Sha256: ab472c685a617064ffdb03e7a8156eef5ea6aa1421af417122595b0f10839d5d

Contents?: true

Size: 576 Bytes

Versions: 45

Compression:

Stored size: 576 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.to_s}/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

45 entries across 45 versions & 1 rubygems

Version Path
noodall-ui-0.0.14 app/views/noodall/nodes/sitemap.xml.rxml
noodall-ui-0.0.13 app/views/noodall/nodes/sitemap.xml.rxml
noodall-ui-0.0.12 app/views/noodall/nodes/sitemap.xml.rxml
noodall-ui-0.0.11 app/views/noodall/nodes/sitemap.xml.rxml
noodall-ui-0.0.10 app/views/noodall/nodes/sitemap.xml.rxml