aboutsummaryrefslogtreecommitdiffstats
path: root/src/sitemap.njk
blob: 5672496a343c50187a183e999f69c68f099706fa (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
---
permalink: "/sitemap.xml"
eleventyExcludeFromCollections: true
---
<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet type="text/xsl" href="/sitemap.xsl"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for item in collections.all %}
	<url>
	{% set absoluteUrl %}{{ item.url | htmlBaseUrl(metadata.url) }}{% endset %}
		<loc>{{absoluteUrl}}</loc>
		<lastmod>{{ item.date | htmlDateString }}</lastmod>
	</url>
{% endfor %}
</urlset>