mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-19 06:47:51 -05:00
19 lines
497 B
Ruby
19 lines
497 B
Ruby
xml.instruct! :xml, :version => "1.0"
|
|
xml.rss :version => "2.0" do
|
|
xml.channel do
|
|
xml.title "#{Growstuff::Application.config.site_name} - Recent posts from all members"
|
|
xml.link posts_url
|
|
|
|
for post in @recent_posts
|
|
xml.item do
|
|
xml.author post.author.login_name
|
|
xml.title post.subject
|
|
xml.description post.body
|
|
xml.pubDate post.created_at.to_s(:rfc822)
|
|
xml.link post_url(post)
|
|
xml.guid post_url(post)
|
|
end
|
|
end
|
|
end
|
|
end
|