summaryrefslogtreecommitdiff
path: root/tests/sitemaps_tests/templates/custom_sitemap_lastmod_index.xml
blob: 31a59b7460070c544fd0b4f3673ec8c5e68648c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="UTF-8"?>
<!-- This is a customized template -->
<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>