2
0
mirror of https://github.com/offen/website.git synced 2024-10-19 04:20:28 +02:00
website/homepage/theme/templates/sitemap.html

12 lines
331 B
HTML
Raw Normal View History

2019-10-21 22:23:34 +02:00
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for page in pages %}
{% if not page.exclude_from_sitemap %}
<url>
<loc>{{ SITEURL }}{{ page.href }}</loc>
2019-10-27 08:24:11 +01:00
<priority>{{ page.sitemap_priority or 0.5 }}</priority>
2019-10-21 22:23:34 +02:00
</url>
{% endif %}
{% endfor %}
</urlset>