zola/components/templates/src/builtins/sitemap.xml

12 lines
379 B
XML
Raw Normal View History

<?xml version="1.0" encoding="UTF-8"?>
2019-06-30 16:02:35 +00:00
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
2019-03-14 20:15:01 +00:00
{% for sitemap_entry in entries %}
2017-03-06 14:45:57 +00:00
<url>
2019-08-04 14:13:07 +00:00
<loc>{{ sitemap_entry.permalink | safe }}</loc>
{% if sitemap_entry.date %}
<lastmod>{{ sitemap_entry.date }}</lastmod>
2017-03-06 14:45:57 +00:00
{% endif %}
</url>
{% endfor %}
2019-03-14 20:15:01 +00:00
</urlset>