10 lines
356 B
Text
10 lines
356 B
Text
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
<% sitemap_tree.flatten.each do |page| %>
|
|
<% if page.get_val.destination_path.include?('.html') %>
|
|
<url>
|
|
<loc><%= "#{app_data.config.host}/#{page.get_val.destination_path.gsub(/index\.html$/, '')}" %></loc>
|
|
</url>
|
|
<% end %>
|
|
<% end %>
|
|
</urlset>
|