2019-08-17 13:37:14 -04:00
|
|
|
{{- $pctx := . -}}
|
|
|
|
{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
|
2020-02-18 10:55:30 -05:00
|
|
|
{{- $pages := slice -}}
|
2020-02-18 11:29:46 -05:00
|
|
|
{{- if or $.IsHome $.IsSection -}}
|
2020-02-18 10:55:30 -05:00
|
|
|
{{- $pages = $pctx.RegularPages -}}
|
2020-02-18 11:29:46 -05:00
|
|
|
{{- else -}}
|
|
|
|
{{- $pages = $pctx.Pages -}}
|
2020-02-18 10:55:30 -05:00
|
|
|
{{- end -}}
|
2019-01-02 06:33:26 -05:00
|
|
|
{{- $limit := .Site.Config.Services.RSS.Limit -}}
|
|
|
|
{{- if ge $limit 1 -}}
|
|
|
|
{{- $pages = $pages | first $limit -}}
|
|
|
|
{{- end -}}
|
2019-09-21 04:06:15 -04:00
|
|
|
{{- printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
|
2018-05-04 11:53:56 -04:00
|
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
|
|
<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>
|
2023-05-27 18:04:51 -04:00
|
|
|
<generator>Hugo -- gohugo.io</generator>
|
|
|
|
<language>{{ site.Language.LanguageCode }}</language>{{ with .Site.Author.email }}
|
2018-05-04 11:53:56 -04:00
|
|
|
<managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Author.email }}
|
|
|
|
<webMaster>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}{{ with .Site.Copyright }}
|
|
|
|
<copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }}
|
|
|
|
<lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
|
2020-08-12 01:34:04 -04:00
|
|
|
{{- with .OutputFormats.Get "RSS" -}}
|
|
|
|
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
|
|
|
|
{{- end -}}
|
2019-01-02 06:33:26 -05:00
|
|
|
{{ range $pages }}
|
2018-05-04 11:53:56 -04:00
|
|
|
<item>
|
|
|
|
<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>
|
|
|
|
<description>{{ .Summary | html }}</description>
|
|
|
|
</item>
|
|
|
|
{{ end }}
|
|
|
|
</channel>
|
2020-08-12 01:34:04 -04:00
|
|
|
</rss>
|