Sha256: 7bcc840e84191d7ca8dc2f1283250b735effb385cebc3ccd5e935c22b132359b

Contents?: true

Size: 491 Bytes

Versions: 9

Compression:

Stored size: 491 Bytes

Contents

xml.instruct!
xml.urlset("xmlns" => "http://www.sitemaps.org/schemas/sitemap/0.9") do

  xml.url do 
    xml.loc @config[:site_url]
    xml.changefreq "weekly"
  end

  xml.url do 
    xml.loc @config[:site_url] + '/about'
    xml.changefreq "weekly"
  end

  xml.url do 
    xml.loc @config[:site_url] + '/archives'
    xml.changefreq "weekly"
  end

  articles.each do |article|
    xml.url do
      xml.loc @config[:site_url] + article.path
      xml.changefreq "weekly"
    end
  end
end

Version data entries

9 entries across 9 versions & 2 rubygems

Version Path
ruby_slippers-0.2.15 test/fixtures/templates/sitemap.builder
ruby_slippers-0.2.8 test/fixtures/templates/sitemap.builder
ruby_slippers-0.2.4 test/fixtures/templates/sitemap.builder
ruby_slippers-0.2.3 test/fixtures/templates/sitemap.builder
ruby_slippers-0.2.0 test/fixtures/templates/sitemap.builder
ruby-slippers-0.1.43 test/fixtures/templates/sitemap.builder
ruby-slippers-0.1.40 test/fixtures/templates/sitemap.builder
ruby-slippers-0.1.11 test/fixtures/templates/sitemap.builder
ruby-slippers-0.1.7 test/fixtures/templates/sitemap.builder