update sitemap layout (added default values)

main
Dominic Reich 2 years ago
parent d9079de6f4
commit a3e6519ed5
Signed by: dominic
GPG Key ID: BC9D6AE1A3BE169A

@ -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>

Loading…
Cancel
Save