mirror of
https://github.com/morgan9e/blog
synced 2026-04-13 15:54:06 +09:00
12 lines
365 B
XML
12 lines
365 B
XML
{{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
|
|
{{- range .Data.Pages }}
|
|
{{- if gt .Date.Year 2000 }}
|
|
<url>
|
|
<loc>{{ .Permalink }}</loc>
|
|
<lastmod>{{ .Lastmod.Format "2006-01-02T15:04:05Z07:00" }}</lastmod>
|
|
</url>
|
|
{{- end }}
|
|
{{- end }}
|
|
</urlset>
|