blob: c2030deb512d2b78da45a64cb342b417b49eae3c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
---
permalink: "/sitemap.xml"
---
<?xml version="1.0" encoding="utf-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for page in collections.all %}
<url>
<loc>{{ page.url | absoluteUrl(metadata.url) }}</loc>
<lastmod>{{ page.date | htmlDateString }}</lastmod>
</url>
{% endfor %}
</urlset>
|