Sha256: 59438279d1b15269dc46df5f69969f247eca6c1f65de3fd23fd860cee85f15ef

Contents?: true

Size: 396 Bytes

Versions: 4

Compression:

Stored size: 396 Bytes

Contents

xml.instruct!
xml.urlset "xmlns" => "http://www.sitemaps.org/schemas/sitemap/0.9" do
  @urls.each do |url|
    xml.url do
      xml.loc url.loc
      
      if url.last_mod
        xml.lastmod url.last_mod.to_date
      end
      
      if url.change_freq
        xml.changefreq url.change_freq
      end
      
      if url.priority
        xml.priority url.priority
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dynamic_sitemaps-1.0.4 app/views/sitemaps/sitemap.builder
dynamic_sitemaps-1.0.3 app/views/sitemaps/sitemap.builder
dynamic_sitemaps-1.0.2 app/views/sitemaps/sitemap.builder
dynamic_sitemaps-1.0.1 app/views/sitemaps/sitemap.builder