Sha256: 829b6f5fb534cb2b934044e615dd441862d48a4212bdea6b2e56a5d3f9fb4d93
Contents?: true
Size: 724 Bytes
Versions: 8
Compression:
Stored size: 724 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 %>.html</link> <pubDate><%= rfc822 post.date %></pubDate> </item> <% end %> </channel> </rss>
Version data entries
8 entries across 4 versions & 1 rubygems