runtimeterror/layouts/_default/rss.xml

48 lines
2.2 KiB
XML
Raw Normal View History

2023-08-16 21:32:46 +00:00
{{- $pctx := . -}}
{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
{{- $pages := slice -}}
{{- if or $.IsHome $.IsSection -}}
{{- $pages = (where $pctx.RegularPages "Type" "in" site.Params.mainSections) -}}
{{- else -}}
{{- $pages = (where $pctx.Pages "Type" "in" site.Params.mainSections) -}}
{{- end -}}
{{- $limit := .Site.Config.Services.RSS.Limit -}}
{{- if ge $limit 1 -}}
{{- $pages = $pages | first $limit -}}
{{- end -}}
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
2023-12-30 22:41:23 +00:00
<rss version="2.0"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:dc="http://purl.org/dc/elements/1.1/">
2023-08-16 21:32:46 +00:00
<channel>
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
<link>{{ .Permalink }}</link>
<description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description>
<generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
2023-12-30 22:41:23 +00:00
<language>{{.}}</language>{{end}}{{ with .Site.Copyright }}
2023-08-16 21:32:46 +00:00
<copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }}
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
{{- with .OutputFormats.Get "RSS" -}}
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
{{- end -}}
2023-12-30 22:52:23 +00:00
<image>
<url>{{ .Site.Params.fallBackOgImage | absURL }}</url>
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
<link>{{ .Permalink }}</link>
</image>
2023-08-16 21:32:46 +00:00
{{ range $pages }}
<item>
2023-12-30 23:03:25 +00:00
<title>{{ .Title | plainify }}</title>
2023-08-16 21:32:46 +00:00
<link>{{ .Permalink }}</link>
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
2023-12-30 23:08:31 +00:00
{{ with .Site.Params.Author.name }}<dc:creator>{{.}}</dc:creator>{{ end }}
{{ with .Params.series }}<category>{{ . | lower }}</category>{{ end }}
2023-12-30 23:03:13 +00:00
{{ range (.GetTerms "tags") }}
2023-12-30 23:08:31 +00:00
<category>{{ .LinkTitle }}</category>{{ end }}
2023-08-16 21:32:46 +00:00
<guid>{{ .Permalink }}</guid>
2024-01-15 18:42:20 +00:00
<description>{{- .Content | html -}}</description>
2023-08-16 21:32:46 +00:00
</item>
{{ end }}
</channel>
</rss>