Files
moonweb-site/shared/_includes/sitemap.njk
T
2026-08-17 00:09:28 +02:00

12 lines
322 B
Plaintext

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