Sha256: 6ce4e341e329033425410a4fc28deb104b9e4a02bd38a3182bd1d4637593ba14

Contents?: true

Size: 700 Bytes

Versions: 7

Compression:

Stored size: 700 Bytes

Contents

xml.instruct! :xml, :version => '1.0', :encoding => 'UTF-8'

xml.urlset :xmlns => 'http://www.sitemaps.org/schemas/sitemap/0.9' do
  @cms_site.pages.published.each do |page|
    xml.url do 
      xml.loc "http://#{@cms_site.hostname}#{"/" + @cms_site.path unless @cms_site.path.blank? }#{page.full_path}"
      # just take some guesses the closer to the root means higher priority
      # start subtracting 0.1 for every additional child page, max out at 0.1
      # "/" splits to 0, "/child_page" splits to 2, hence weird max -1 
      xml.priority [1 - (0.1 * ( ( [page.full_path.split("/").count, 1].max - 1 ) ) ), 0.1].max
      xml.lastmod page.updated_at.strftime('%Y-%m-%d')
    end
  end
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
comfortable_mexican_sofa-1.9.3 app/views/cms_content/render_sitemap.xml.builder
comfortable_mexican_sofa-1.9.2 app/views/cms_content/render_sitemap.xml.builder
comfortable_mexican_sofa-1.9.1 app/views/cms_content/render_sitemap.xml.builder
comfortable_mexican_sofa-1.9.0 app/views/cms_content/render_sitemap.xml.builder
comfortable_mexican_sofa-1.6.11 app/views/cms_content/render_sitemap.xml.builder
comfortable_mexican_sofa-1.6.10 app/views/cms_content/render_sitemap.xml.builder
comfortable_mexican_sofa-1.6.9 app/views/cms_content/render_sitemap.xml.builder