Skip to content

Instantly share code, notes, and snippets.

@kejadlen
Created July 28, 2012 02:40
Show Gist options
  • Save kejadlen/3191497 to your computer and use it in GitHub Desktop.
Save kejadlen/3191497 to your computer and use it in GitHub Desktop.
<?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