blob: 51fa4da9e13585fb9fb3be37e52fa0e21727cf58 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
xml.instruct! :xml, :version => "1.0"
xml.rss :version => "2.0" do
xml.channel do
xml.title RefinerySetting.find_or_set(:site_name, "Company Name")
xml.description RefinerySetting.find_or_set(:site_name, "Company Name") + " Blog Posts"
xml.link blog_root_url
@blog_posts.each do |post|
xml.item do
xml.title post.title
xml.description post.body
xml.pubDate post.published_at.to_s(:rfc822)
xml.link blog_post_url(post)
end
end
end
end
|