This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/views/blogposts/index.atom.builder
2014-09-03 22:52:06 +02:00

17 lines
433 B
Ruby

atom_feed do |feed|
feed.title "Redstoner News"
feed.updated Time.now
@posts.limit(100).each do |post|
feed.entry post do |entry|
entry.updated post.updated_at
entry.author do |a|
a.name post.author.name
a.uri user_url(post.author)
end
entry.url blogpost_url(post)
entry.title post.title
entry.content render_md(post.content).html_safe, :type => 'html'
end
end
end