Files
moonweb-site/shared/_includes/sitemap.njk
T
2026-08-14 10:17:06 +02:00

10 lines
266 B
Plaintext

<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{%- for page in collections.all %}
<url>
<loc>{{ site.url }}{{ page.url }}</loc>
<lastmod>{{ page.date | date }}</lastmod>
</url>
{%- endfor %}
</urlset>