cartodb-4.42/app/views/admin/pages/sitemap.xml.builder
2024-04-06 05:25:13 +00:00

10 lines
222 B
Ruby

# app/views/sitemaps/index.xml.builder
xml.urlset(xmlns: "http://www.sitemaps.org/schemas/sitemap/0.9") do
@urls.each do |path|
xml.url do
xml.loc path[:loc]
xml.lastmod path[:lastfreq]
end
end
end