0
lastmod
を私のサイトマップに追加したいのですが、どのようにフォーマットするべきかの良い例は見つかりません。lastmodをアプリケーションのサイトマップに追加する方法
コントローラー:
class SitemapsController < ApplicationController
def show
@events = Event.where(block_search_engines: false, status: 1)
end
end
表示ビルダー:
xml.instruct!
xml.urlset "xmlns" => "http://www.sitemaps.org/schemas/sitemap/0.9" do
@events.each do |event|
xml.url do
xml.loc present_url(event.slug)
xml.priority 1.0
end
end
end
どのように私はこのコードでそれを実装してここ
は、私が働いて、現在のよ何ですか?