Sha256: 8e08c0136851123a49663ca67b16d08db6432930cfeaf159263d3a1493a574b4
Contents?: true
Size: 742 Bytes
Versions: 1
Compression:
Stored size: 742 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 @posts %> <item> <title><%= post.title %></title> <category><%= post.category %></category> <description><%= strip_tags post.summary %></description> <author><%= @blog.author %></author> <link><%= @blog.url %><%= post_path post %></link> <pubDate><%= rfc822 post.date %></pubDate> </item> <% end %> </channel> </rss>
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
shinmun-0.9.2 | templates/index.rxml |