mysteriendrama/lib/python3.11/site-packages/django/contrib/sitemaps/templates/sitemap_index.xml

14 lines
360 B
XML
Raw Normal View History

2023-07-22 12:04:19 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% spaceless %}
{% for site in sitemaps %}
<sitemap>
<loc>{{ site.location }}</loc>
{% if site.last_mod %}
<lastmod>{{ site.last_mod|date:"c" }}</lastmod>
{% endif %}
</sitemap>
{% endfor %}
{% endspaceless %}
</sitemapindex>