From 91db3887483d0da6c0a715da1bec31638d08ee46 Mon Sep 17 00:00:00 2001 From: Jack Pearkes Date: Mon, 17 Feb 2014 14:37:51 -0500 Subject: [PATCH] website/www: use absolute links in the feed Some feed readers, like FeedBurner[1] don't support content that uses relative links. This just makes them absolute so they will work everywhere. [1]: https://support.google.com/feedburner/answer/79018?hl=en --- website/www/source/blog_feed.xml.builder | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/www/source/blog_feed.xml.builder b/website/www/source/blog_feed.xml.builder index 90a2d45ca..2c9693770 100644 --- a/website/www/source/blog_feed.xml.builder +++ b/website/www/source/blog_feed.xml.builder @@ -11,7 +11,7 @@ xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do blog.articles[0..5].each do |article| xml.entry do xml.title article.title - xml.link "rel" => "alternate", "href" => article.url + xml.link "rel" => "alternate", "href" => "http://www.vagrantup.com#{article.url}" xml.id article.url xml.published article.date.to_time.iso8601 xml.updated article.date.to_time.iso8601