Sha256: dc285a1c8f45ba51e0c4d1809294c7d38250be56a47b5ccdfce965f9802aedb9
Contents?: true
Size: 571 Bytes
Versions: 8
Compression:
Stored size: 571 Bytes
Contents
xml.instruct! xml.urlset "xmlns" => "http://www.sitemaps.org/schemas/sitemap/0.9" do # homepage xml.url do xml.loc root_path(:only_path => false) xml.lastmod File.new("#{RAILS_ROOT}/app/views/nodes/home.html.erb").mtime.to_formatted_s(:w3c) xml.changefreq "daily" xml.priority 1 end # nodes @nodes.each do |node| xml.url do xml.loc node_path(node,:only_path => false) xml.lastmod node.updated_at.to_formatted_s(:w3c) xml.changefreq "daily" xml.priority 1 end end end
Version data entries
8 entries across 8 versions & 1 rubygems