Sha256: 96d5cab9661c8841bf2dbf799af90bf24635131a453fc36bbd4fd19b67828598

Contents?: true

Size: 251 Bytes

Versions: 3

Compression:

Stored size: 251 Bytes

Contents

xml.instruct!
xml.urlset "xmlns" => "http://www.sitemaps.org/schemas/sitemap/0.9" do
  @posts.each do |post|
    xml.url do
      xml.loc miniblog.post_url(id: post.to_param)
      xml.lastmod post.updated_at.to_s(:miniblog_sitemap)
    end
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
miniblog-1.0.2 app/views/miniblog/sitemap/show.xml.builder
miniblog-1.0.1 app/views/miniblog/sitemap/show.xml.builder
miniblog-1.0.0 app/views/miniblog/sitemap/show.xml.builder