otwarchive-sunsetarchive/app/views/admin_posts/index.rss.builder

20 lines
482 B
Text
Raw Permalink Normal View History

2026-03-17 05:16:49 +00:00
xml.instruct! :xml, :version => "1.0"
xml.rss :version => "2.0" do
xml.channel do
xml.title "Sunset News"
xml.description "Latest updates from sunset.femslash.club"
xml.link admin_posts_url
@admin_posts.each do |post|
xml.item do
xml.title post.title
xml.description post.content
xml.pubDate post.created_at.to_fs(:rfc822)
xml.link admin_post_url(post)
xml.guid admin_post_url(post)
end
end
end
end