aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/pages/sitemap.njk
blob: 455c26ba9263cee37b3c75cf3b7e33666cc3dd29 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
eleventyExcludeFromCollections: true
permalink: /sitemap.xml
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for item in collections.all %}
  <url>
    <loc>{{ site.url }}{{ item.url }}</loc>
    <lastmod>{{ item.date | formatDate }}</lastmod>
    <changefreq>{{ item.data.sitemapChangefreq | default("monthly") }}</changefreq>
    <priority>{{ item.data.sitemapPriority | default(0.8) }}</priority>
  </url>
{% endfor %}
</urlset>