Sha256: 8c3df60c8c11edd11d0fefe19383faf3974e8ad8d367b2a423d5a71fc92fb419
Contents?: true
Size: 719 Bytes
Versions: 9
Compression:
Stored size: 719 Bytes
Contents
<?xml version="1.0" encoding="utf-8"?> <rss version="2.0"> <channel> <title><%= @blog.title %></title> <link><%= @blog.url %></link> <description><%= @blog.description %></description> <language><%= @blog.language %></language> <copyright><%= @blog.author %></copyright> <pubDate><%= rfc822 Time.now %></pubDate> <% for post in @blog.recent_posts %> <item> <title><%= post.title %></title> <category><%= post.category %></category> <description><%= strip_tags post.summary %></description> <author><%= @author || @blog.author %></author> <link><%= @blog.url+ post_path(post) %></link> <pubDate><%= rfc822 post.date %></pubDate> </item> <% end %> </channel> </rss>
Version data entries
9 entries across 9 versions & 1 rubygems