sass-site/source/sitemap.xml.builder

16 lines
410 B
Plaintext
Raw Normal View History

2013-10-09 12:30:53 +02:00
---
layout: false
---
xml.instruct!
xml.urlset 'xmlns' => "http://www.sitemaps.org/schemas/sitemap/0.9" do
sitemap.resources.select { |page| page.path =~ /\.html/ }.each do |page|
xml.url do
xml.loc "#{data.sitemap.url}#{page.url}"
xml.lastmod Date.today.to_time.iso8601
xml.changefreq page.data.changefreq || "monthly"
xml.priority page.data.priority || "0.5"
end
end
end