docs/layouts/sitemap.xml

15 lines
593 B
XML

{{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
{{ printf "<?xml-stylesheet type=\"text/xsl\" href=\"%s\"?>" (urls.AbsURL "sitemap.xsl") | safeHTML }}
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{{- range where site.Pages "Params.sitemap" "!=" false }}
{{- if ne .Params.sitemap false }}
<url>
<loc>{{ .Permalink}}</loc>
<lastmod>{{ .Lastmod | time.Format "2006-01-02" }}</lastmod>
<changefreq>monthly</changefreq>
<priority>0.5</priority>
</url>
{{- end }}
{{- end }}
</urlset>