2022-11-03 09:16:25 -07:00
|
|
|
<title>{{ .Title }}</title>
|
|
|
|
<id>{{ .Permalink }}</id>
|
2023-08-08 07:35:53 -07:00
|
|
|
<link href="{{ .Permalink }}" />
|
2022-11-03 09:16:25 -07:00
|
|
|
<published>{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</published>
|
|
|
|
<updated>{{ .Lastmod.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</updated>
|
2023-08-08 07:35:53 -07:00
|
|
|
{{ 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 }}" />
|
2023-08-08 07:35:53 -07:00
|
|
|
{{ end -}}
|
|
|
|
{{ end -}}
|