Sha256: 00fd81d8afbd986d0fe47b1f80f7796a8a576bb62709d1e26f8fd208aa1e31a2

Contents?: true

Size: 554 Bytes

Versions: 4

Compression:

Stored size: 554 Bytes

Contents

xml.instruct! :xml, :version=>"1.0", :encoding=>"UTF-8"
xml.instruct! 'xml-stylesheet', :type=>"text/css", :href => url_for("/stylesheets/rss.css")

xml.rss "version" => "2.0", "xmlns:dc" => "http://purl.org/dc/elements/1.1/",
        "xmlns:trackback" => "http://madskills.com/public/xml/rss/module/trackback/" do
  xml.channel do
    xml.title feed_title
    xml.link @auto_discovery_url_rss
    xml.language "en-us"
    xml.ttl "40"
    xml.description this_blog.blog_subtitle

    rss20_feed.each do |value|
      value.to_rss(xml)
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
typo-5.1.98 app/views/articles/_rss20_feed.rss.builder
typo-5.2 app/views/articles/_rss20_feed.rss.builder
typo-5.2.98 app/views/articles/_rss20_feed.rss.builder
typo-5.3 app/views/articles/_rss20_feed.rss.builder