-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.njk
31 lines (31 loc) · 848 Bytes
/
sitemap.njk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
permalink: sitemap.xml
eleventyExcludeFromCollections: true
---
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{% for post in collections.posts %}
<url>
<loc>https://daily.hamweekly.com{{ post.url | url }}</loc>
<lastmod>{{ post.date | formatSitemapDate }}</lastmod>
</url>
{% endfor %}
<url>
<loc>https://daily.hamweekly.com/about/</loc>
<lastmod>2023-12-10</lastmod>
</url>
<url>
<loc>https://daily.hamweekly.com/tags/</loc>
<lastmod>2023-12-10</lastmod>
</url>
<url>
<loc>https://daily.hamweekly.com/links/</loc>
<lastmod>2024-02-01</lastmod>
</url>
{% for tag in collections.tagList | filterTagList %}
<url>
<loc>https://daily.hamweekly.com/tags/{{tag | slug }}</loc>
<lastmod>2023-12-10</lastmod>
</url>
{% endfor %}
</urlset>