Sha256: e835401d612b64ff586618562e1eebc2d9173e4d1adc806527e785c3abd12c5f
Contents?: true
Size: 481 Bytes
Versions: 5
Compression:
Stored size: 481 Bytes
Contents
--- layout: false --- site_url = config[:sitemap_url] || "http://localhost:4567/" xml.instruct! xml.urlset 'xmlns' => "http://www.sitemaps.org/schemas/sitemap/0.9" do sitemap.resources.select { |page| page.destination_path =~ /\.html/ }.each do |page| xml.url do xml.loc File.join(site_url, page.destination_path) xml.lastmod Time.now.iso8601 xml.changefreq page.data.changefreq || "weekly" xml.priority page.data.priority || "0.5" end end end
Version data entries
5 entries across 5 versions & 1 rubygems