update sitemap layout (added default values)

This commit is contained in:
Dominic Reich 2022-12-09 23:11:01 +01:00
parent d9079de6f4
commit a3e6519ed5
Signed by: dominic
GPG key ID: BC9D6AE1A3BE169A

View file

@ -3,9 +3,9 @@
{{ range .Data.Pages }}
<url>
<loc>{{ .Permalink }}</loc>{{ if not .Lastmod.IsZero }}
<lastmod>{{ safeHTML ( .Lastmod.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ end }}{{ with .Sitemap.ChangeFreq }}
<changefreq>{{ . }}</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
<priority>{{ .Sitemap.Priority }}</priority>{{ end }}
<lastmod>{{ safeHTML ( .Lastmod.Format "2006-01-02T15:04:05-07:00" ) }}</lastmod>{{ else }}<lastmod>{{ .Site.LastChange }}</lastmod>{{ end }}{{ with .Sitemap.ChangeFreq }}
<changefreq>{{ . }}</changefreq>{{ else }}<changefreq>monthly</changefreq>{{ end }}{{ if ge .Sitemap.Priority 0.0 }}
<priority>{{ .Sitemap.Priority }}</priority>{{ else }}<priority>0.5</priority>{{ end }}
</url>
{{ end }}
</urlset>