-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsitemap.xml.tmpl
37 lines (37 loc) · 1.19 KB
/
sitemap.xml.tmpl
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
32
33
34
35
36
37
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://mau.fi/</loc>
<lastmod>2024-06-23T20:40:00+00:00</lastmod>
<priority>1.00</priority>
</url>
<url>
<loc>https://mau.fi/projects/</loc>
<lastmod>2024-06-23T20:40:00+00:00</lastmod>
<priority>0.80</priority>
</url>
<url>
<loc>https://mau.fi/pgp</loc>
<lastmod>2020-12-13T15:26:24+00:00</lastmod>
<priority>0.50</priority>
</url>
<url>
<loc>https://mau.fi/blog/</loc>
<lastmod>{{ .BlogLastMod.Format "2006-01-02T15:04:05-07:00" }}</lastmod>
<priority>0.90</priority>
</url>
{{- range $_, $post := .Posts }}
<url>
<loc>https://mau.fi/blog/{{ $post.Slug }}/</loc>
<lastmod>{{ .CreatedAt.Format "2006-01-02T15:04:05-07:00" }}</lastmod>
<priority>0.85</priority>
</url>
{{- end }}
{{- range $_, $tag := .Tags }}
<url>
<loc>https://mau.fi/blog/tags/{{ $tag.Slug }}/</loc>
<lastmod>{{ .LastModified.Format "2006-01-02T15:04:05-07:00" }}</lastmod>
<priority>0.75</priority>
</url>
{{- end }}
</urlset>