Sha256: 4606e6a85d8058ed444d89c1eb2e8f420a762d50b1cd80da9e3ebc251aee0a68

Contents?: true

Size: 690 Bytes

Versions: 9

Compression:

Stored size: 690 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(post) %></link>
	<pubDate><%= rfc822 post.date %></pubDate>
      </item>
    <% end %>
  </channel> 
</rss>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
georgi-shinmun-0.3.10 test/templates/category.rxml
georgi-shinmun-0.3.4 test/templates/category.rxml
georgi-shinmun-0.3.5 test/templates/category.rxml
georgi-shinmun-0.3.6 test/templates/category.rxml
georgi-shinmun-0.3.7 test/templates/category.rxml
georgi-shinmun-0.3.8 test/templates/category.rxml
georgi-shinmun-0.3.9 test/templates/category.rxml
georgi-shinmun-0.4.1 test/templates/category.rxml
georgi-shinmun-0.4 test/templates/category.rxml