Sha256: fb17175e065bad130763077472d5df297b55d117409e5ee666fa12ef4012cbdc
Contents?: true
Size: 688 Bytes
Versions: 11
Compression:
Stored size: 688 Bytes
Contents
<?xml version="1.0" encoding="utf-8"?> <rss version="2.0"> <channel> <title><%= @name %></title> <link><%= @blog.url %>/categories/<%= urlify @name %></link> <language><%= @blog.language %></language> <copyright><%= @blog.author %></copyright> <pubDate><%= rfc822 Time.now %></pubDate> <% for post in @posts[0, 20] %> <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
11 entries across 11 versions & 2 rubygems