docbrown/app/views/sitemaps/users.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
293 B
Text

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