Skip to content

Instantly share code, notes, and snippets.

@ezhlobo
Created January 17, 2014 20:44
Show Gist options
  • Save ezhlobo/8481090 to your computer and use it in GitHub Desktop.
Save ezhlobo/8481090 to your computer and use it in GitHub Desktop.
Middleman sitemap
<ol>
<% sitemap.resources .select{|page| page.url =~ /\.html/} .map{|page| page.url.gsub(/^\//, '')} .sort .each do |url| %>
<li><a target="_blank" href="<%= "#{url}" %>"><%= "#{url}" %></a></li>
<% end %>
</ol>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment