11 lines
506 B
XML
11 lines
506 B
XML
<title>{{ .Title }}</title>
|
|
<link>{{ .Permalink }}</link>
|
|
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
|
{{ with .Site.Author.email }}<author>{{ . }}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
|
|
<guid>{{ .Permalink }}</guid>
|
|
{{- range slice "series" "categories" "tags" -}}
|
|
{{ range $.GetTerms . }}
|
|
{{- $domain := (.Site.GetPage (printf "/%s" .Section)).Permalink -}}
|
|
<category domain="{{ $domain }}">{{ .Title }}</category>
|
|
{{ end }}
|
|
{{- end -}}
|