2016-09-07 16:10:48 -04:00
|
|
|
---
|
|
|
|
layout: none
|
|
|
|
search: exclude
|
2023-03-30 12:35:21 +02:00
|
|
|
# https://www.sitemaps.org/protocol.html
|
|
|
|
# Priority is relative to the website, can be chosen in {0.1, 0.2, ..., 1}
|
|
|
|
# Default priority is 0.5
|
|
|
|
latestPriority: 0.8
|
2016-09-07 16:10:48 -04:00
|
|
|
---
|
|
|
|
|
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
2023-03-30 12:35:21 +02:00
|
|
|
<url>
|
|
|
|
<loc>{{site.url}}/index.html</loc>
|
|
|
|
<priority>0.9</priority>
|
|
|
|
<changefreq>monthly</changefreq>
|
|
|
|
<lastmod>{{ site.time | date: "%Y-%m-%d" }}</lastmod>
|
|
|
|
</url>
|
|
|
|
|
|
|
|
|
2016-09-07 16:10:48 -04:00
|
|
|
{% for post in site.posts %}
|
|
|
|
{% unless post.search == "exclude" %}
|
|
|
|
<url>
|
|
|
|
<loc>{{site.url}}{{post.url}}</loc>
|
2023-03-30 12:35:21 +02:00
|
|
|
<priority>{{page.latestPriority}}</priority>
|
|
|
|
<changefreq>monthly</changefreq>
|
|
|
|
<lastmod>{{ site.time | date: "%Y-%m-%d" }}</lastmod>
|
2016-09-07 16:10:48 -04:00
|
|
|
</url>
|
|
|
|
{% endunless %}
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
|
2023-03-30 12:35:21 +02:00
|
|
|
{% for p in site.pages %}
|
|
|
|
{% unless p.search == "exclude" %}
|
2016-09-07 16:10:48 -04:00
|
|
|
<url>
|
2023-03-30 12:35:21 +02:00
|
|
|
<loc>{{site.url}}{{ p.url}}</loc>
|
|
|
|
<priority>{{page.latestPriority}}</priority>
|
|
|
|
<changefreq>monthly</changefreq>
|
|
|
|
<lastmod>{{ site.time | date: "%Y-%m-%d" }}</lastmod>
|
2016-09-07 16:10:48 -04:00
|
|
|
</url>
|
|
|
|
{% endunless %}
|
|
|
|
{% endfor %}
|
2023-03-30 12:35:21 +02:00
|
|
|
</urlset>
|