Sha256: 9d32ae799d121bd275ad3dcda8abbf8e0b5e4be0e23da495bfefe9fd48ffe336

Contents?: true

Size: 689 Bytes

Versions: 4

Compression:

Stored size: 689 Bytes

Contents

<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"> 
  <channel>
    <title><%= @name %></title>
    <link><%= @blog.url %>/categories/<%= urlify @name %>.html</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 %></link>
	<pubDate><%= rfc822 post.date %></pubDate>
      </item>
    <% end %>
  </channel> 
</rss>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
georgi-shinmun-0.3.1 templates/category.rxml
georgi-shinmun-0.3.2 templates/category.rxml
georgi-shinmun-0.3.3 templates/category.rxml
georgi-shinmun-0.3 templates/category.rxml