12 lines
352 B
XML
12 lines
352 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
{% for u in urls %}
|
|
<url>
|
|
<loc>{{ u.loc }}</loc>
|
|
{% if u.get('lastmod') %}<lastmod>{{ u.lastmod }}</lastmod>{% endif %}
|
|
<changefreq>{{ u.changefreq }}</changefreq>
|
|
<priority>{{ u.priority }}</priority>
|
|
</url>
|
|
{% endfor %}
|
|
</urlset>
|