agnes.love/content/sitemap.xml.njk

17 lines
422 B
Text
Raw Normal View History

2026-06-21 06:59:48 +00:00
---
permalink: /sitemap.xml
layout: false
eleventyExcludeFromCollections: true
---
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://sitemaps.org">
{%- for page in collections.all %}
{%- if page.data.permalink != false %}
<url>
<loc>{{ metadata.url }}{{ page.url | url }}</loc>
<lastmod>{{ page.date.toISOString() }}</lastmod>
</url>
{%- endif %}
{%- endfor %}
</urlset>