2022-11-03 09:16:25 -07:00
|
|
|
<title>{{ .Title }}</title>
|
|
|
|
<id>{{ .Permalink }}</id>
|
|
|
|
<published>{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</published>
|
|
|
|
<updated>{{ .Lastmod.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</updated>
|
|
|
|
{{- range slice "series" "categories" "tags" -}}
|
|
|
|
{{- range $.GetTerms . -}}
|
2022-11-05 23:58:50 -07:00
|
|
|
{{- $scheme := (.Site.GetPage (printf "/%s" .Section)).Permalink -}}
|
2022-11-03 09:16:25 -07:00
|
|
|
<category term="{{ .Name }}" scheme="{{ $scheme }}" label="{{ .Title }}" />
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|