-
-
Save alexbaldwin/5376440 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<% base_url = "http://youdomain.com/" %> | |
<% pages = sitemap.resources.find_all{|p| p.source_file.match(/\.html/) } %> | |
<?xml version="1.0" encoding="UTF-8"?> | |
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | |
<% pages.each do |p| %> | |
<url> | |
<loc><%= base_url + p.destination_path.gsub('index.html','') %></loc> | |
<% if priority = p.metadata[:page]['priority'] %> | |
<priority><%= priority %> </priority> | |
<% end %> | |
<lastmod><%= File.new(p.source_file).mtime.to_date %></lastmod> | |
</url> | |
<% end %> | |
</urlset> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Don't forget to add
to your config.rb