mirror of
https://github.com/danog/sass-site.git
synced 2024-11-27 04:24:50 +01:00
16 lines
410 B
Ruby
16 lines
410 B
Ruby
---
|
|
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
|