2024-08-20 06:49:11 +00:00
|
|
|
---
|
|
|
|
permalink: sitemap.xml
|
|
|
|
eleventyExcludeFromCollections: true
|
|
|
|
---
|
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
|
|
{% for item in collections.all -%}
|
|
|
|
<url>
|
|
|
|
<loc>{{ sitemeta.siteUrl + item.url | url }}</loc>
|
|
|
|
<lastmod>{% if item.updated %}{{ item.updated.toISOString() }}{% else %}{{ item.date.toISOString() }}{% endif %}</lastmod>
|
2024-08-20 06:52:17 +00:00
|
|
|
<changefreq>{{ item.data.sitemap.changefreq | default("weekly") }}</changefreq>
|
2024-08-20 06:49:11 +00:00
|
|
|
<priority>{{ item.data.sitemap.priority | default(0.5) }}</priority>
|
|
|
|
</url>
|
|
|
|
{%- endfor %}
|
|
|
|
</urlset>
|