docbrown/app/views/sitemaps/posts.xml.erb
Ben Halpern d85f07c00d
Fix legacy sitemap logic (#14926)
* Fix legacy sitemap logic

* Add aggregate failures

* Fix formatting

* Adjust robots.txt spec

* Fix index minimum to >=
2021-10-07 08:59:16 -04:00

9 lines
298 B
Text

<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<% @articles.each do |path, last_comment_at| %>
<url>
<loc><%= app_url(path) %></loc>
<lastmod><%= last_comment_at.strftime("%F") %></lastmod>
</url>
<% end %>
</urlset>