xml.instruct! xml.sitemapindex "xmlns" => "http://www.sitemaps.org/schemas/sitemap/0.9" do @pages.each_with_index do |page, i| xml.sitemap do xml.loc url_for(:host => request.host, :page => i + 1, :format => :xml) if page.last_mod xml.lastmod page.last_mod.to_date end end end end