summaryrefslogtreecommitdiffstats
path: root/templates/sitemap.xml
blob: e0cfc8263e7ae9f87a34a5522ef21bc5ee046b98 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
    {%- for sitemap_entry in entries %}
	{%- if not sitemap_entry.extra.hidden|default(value=false) %}
    <url>
        <loc>{{ sitemap_entry.permalink | escape_xml | safe }}</loc>
        {%- if sitemap_entry.updated %}
        <lastmod>{{ sitemap_entry.updated }}</lastmod>
        {%- endif %}
    </url>
	{%- endif %}
    {%- endfor %}
</urlset>