oe7drt-website/layouts/sitemap.xml

12 lines
728 B
XML
Raw Normal View History

2022-12-05 22:32:44 +01:00
{{ "<?" | safeHTML }}xml-stylesheet type="text/xsl" href="{{ "/sitemap.xsl" | absURL }}"{{ "?>" | safeHTML }}
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
{{ range .Data.Pages }}
<url>
2022-12-11 18:15:21 +01:00
<loc>{{ .Permalink | absURL }}</loc>{{ if not .Lastmod.IsZero }}
2022-12-13 06:49:16 +01:00
<lastmod>{{ safeHTML ( .Lastmod.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ else }}<lastmod>{{ .Site.LastChange.Format "2006-01-02T15:04:05-07:00" }}</lastmod>{{ end }}{{ with .Sitemap.ChangeFreq }}
2022-12-11 18:15:21 +01:00
<changefreq>{{ . }}</changefreq>{{ else }}<changefreq>weekly</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
<priority>{{ .Sitemap.Priority }}</priority>{{ else }}<priority>0.5</priority>{{ end }}
2022-12-05 22:32:44 +01:00
</url>
{{ end }}
</urlset>