Created
July 28, 2012 02:40
-
-
Save kejadlen/3191497 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?xml version="1.0" encoding="UTF-8"?> | |
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> | |
<% | |
@pages.find(:all, | |
:in_directory => '', | |
:extension => 'html', | |
:recursive => true, | |
:draft => nil).each do |page| | |
-%> | |
<url> | |
<loc><%= Webby.site.base %><%= page.url %></loc> | |
<lastmod><%= page.mtime.strftime('%Y-%m-%d') %></lastmod> | |
<priority><%= page.blog_post ? 1 : 0.8 %></priority> | |
</url> | |
<% end -%> | |
</urlset> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment