15 lines
468 B
XML
15 lines
468 B
XML
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML -}}
|
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
|
{{- range .Site.Pages -}}
|
|
{{- if not (partial "seo/noindex.html" .) -}}
|
|
<url>
|
|
<loc>{{ .Permalink }}</loc>
|
|
{{- with .Lastmod }}
|
|
<lastmod>{{ .Format "2006-01-02T15:04:05Z07:00" }}</lastmod>
|
|
{{- end }}
|
|
</url>
|
|
{{- end -}}
|
|
{{- end -}}
|
|
</urlset>
|