public/src/sitemap.html

17 lines
485 B
HTML
Raw Normal View History

2021-04-07 12:21:17 -04:00
---
permalink: /sitemap.xml
eleventyExcludeFromCollections: true
---
2021-07-06 17:42:26 -04:00
<?xml version="1.0" encoding="utf-8"?>
2021-04-07 12:21:17 -04:00
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for page in collections.all %}
2021-07-06 17:42:26 -04:00
{% if not page.data.draft %}
2021-04-07 12:21:17 -04:00
<url>
<loc>{{ site.url }}{{ page.url | url }}</loc>
<lastmod>{{ page.date }}</lastmod>
<changefreq>{{page.data.changeFreq}}</changefreq>
</url>
2021-07-06 17:42:26 -04:00
{% endif %}
2021-04-07 12:21:17 -04:00
{% endfor %}
2021-07-06 17:42:26 -04:00
</urlset>