This repository has been archived on 2020-05-27. You can view files and clone it, but cannot push or open issues/pull-requests.
barleysodas/app/views/pages/_pages.rxml

20 lines
680 B
Plaintext

xml.instruct! :xml, :version=>"1.0"
xml.rss(:version=>"2.0"){
xml.channel{
xml.title("BarleySodas Recently Updated Pages")
xml.link(pages_url)
xml.description("The most recently updated pages in BarleySodas.")
xml.lastBuildDate((@pages.first.created_at.strftime("%a, %d %b %Y %H:%M:%S %z") rescue nil))
xml.language('en-us')
for page in @pages
xml.item do
xml.title(page.title)
xml.description(page.title)
xml.author(page.created_by.title)
xml.pubDate(page.created_at.strftime("%a, %d %b %Y %H:%M:%S %z"))
xml.link(page_url(page))
xml.guid(page_url(page))
end
end
}
}