LoveIt/layouts/sitemap.xml

48 lines
1.6 KiB
XML
Raw Normal View History

2020-01-31 11:46:28 +01:00
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xhtml="http://www.w3.org/1999/xhtml"
>
{{- range (where .Data.Pages "Section" "!=" "gallery") -}}
2019-08-02 10:16:59 +02:00
<url>
2020-01-31 11:46:28 +01:00
<loc>
{{- .Permalink -}}
</loc>
{{- if not .Lastmod.IsZero -}}
<lastmod>
2020-02-18 09:22:24 +01:00
{{- .Lastmod.Format "2006-01-02T15:04:05-07:00" -}}
2020-01-31 11:46:28 +01:00
</lastmod>
{{- end -}}
{{- with .Sitemap.ChangeFreq -}}
<changefreq>
{{- . -}}
</changefreq>
{{- end -}}
2020-01-31 11:46:28 +01:00
{{- if ge .Sitemap.Priority 0.0 -}}
{{- $weeks := div (sub now.Unix .Lastmod.Unix) 604800 -}}
{{- $priority := sub 1 (div $weeks 10.0 ) -}}
{{- if ge .Sitemap.Priority $priority -}}
<priority>{{ .Sitemap.Priority }}</priority>
{{- else -}}
<priority>{{ $priority }}</priority>
{{- end -}}
2020-01-31 11:46:28 +01:00
{{- end -}}
2020-01-31 11:46:28 +01:00
{{- if .IsTranslated -}}
{{- range .Translations -}}
<xhtml:link
rel="alternate"
hreflang="{{ .Lang }}"
href="{{ .Permalink }}"
/>
{{- end -}}
<xhtml:link
rel="alternate"
hreflang="{{ .Lang }}"
href="{{ .Permalink }}"
/>
{{- end -}}
2019-08-02 10:16:59 +02:00
</url>
2020-01-31 11:46:28 +01:00
{{- end -}}
2020-02-06 17:10:00 +01:00
</urlset>