20 lines
828 B
XML
20 lines
828 B
XML
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
||
|
|
{%- for sitemap_entry in entries %}
|
||
|
|
<url>
|
||
|
|
<loc>{{ sitemap_entry.permalink | escape_xml | safe }}</loc>
|
||
|
|
{%- if sitemap_entry.extra.sitemap.updated is defined %}
|
||
|
|
<lastmod>{{ sitemap_entry.extra.sitemap.updated | escape_xml | safe }}</lastmod>
|
||
|
|
{%- elif sitemap_entry.updated %}
|
||
|
|
<lastmod>{{ sitemap_entry.updated | escape_xml | safe }}</lastmod>
|
||
|
|
{%- endif %}
|
||
|
|
{%- if sitemap_entry.extra.sitemap.changefreq is defined %}
|
||
|
|
<changefreq>{{ sitemap_entry.extra.sitemap.changefreq | escape_xml | safe }}</changefreq>
|
||
|
|
{%- endif %}
|
||
|
|
{%- if sitemap_entry.extra.sitemap.priority is defined %}
|
||
|
|
<priority>{{ sitemap_entry.extra.sitemap.priority | escape_xml | safe }}</priority>
|
||
|
|
{%- endif %}
|
||
|
|
</url>
|
||
|
|
{%- endfor %}
|
||
|
|
</urlset>
|