forked from saurabh/orbit4-5
21 lines
793 B
Plaintext
21 lines
793 B
Plaintext
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.google.com/schemas/sitemap/0.90">
|
|
<% @site_in_use_locales.each do |locale| %>
|
|
<url>
|
|
<loc><%= request.protocol + request.host_with_port + "/?locale=#{locale.to_s}"%></loc>
|
|
<lastmod><%= (@home.page_parts.desc(:updated_at).first.updated_at rescue @home.updated_at) %></lastmod>
|
|
<priority>0.5</priority>
|
|
</url>
|
|
<% end %>
|
|
<% @items.each do |item| %>
|
|
<% @site_in_use_locales.each do |locale| %>
|
|
<% if item.enabled_for_sitemap.include?locale.to_s %>
|
|
<url>
|
|
<loc><%= request.protocol + request.host_with_port + "/" + locale.to_s + item.url %></loc>
|
|
<lastmod><%= item.updated_at %></lastmod>
|
|
<priority>0.5</priority>
|
|
</url>
|
|
<% end %>
|
|
<% end %>
|
|
<% end %>
|
|
</urlset> |