diff --git a/app/views/locomotive/public/sitemaps/show.xml.builder b/app/views/locomotive/public/sitemaps/show.xml.builder index 03eaecc1..73727da7 100644 --- a/app/views/locomotive/public/sitemaps/show.xml.builder +++ b/app/views/locomotive/public/sitemaps/show.xml.builder @@ -11,14 +11,14 @@ xml.urlset "xmlns" => "http://www.sitemaps.org/schemas/sitemap/0.9" do if page.templatized? page.content_type.entries.visible.each do |c| xml.url do - xml.loc page_url(page, { :content => c, :host => true }) + xml.loc page_url(page, { :content => c }) xml.lastmod c.updated_at.to_date.to_s('%Y-%m-%d') xml.priority 0.9 end end else xml.url do - xml.loc page_url(page, { :host => true }) + xml.loc page_url(page) xml.lastmod page.updated_at.to_date.to_s('%Y-%m-%d') xml.priority 0.9 end