2021-11-25 23:49:05 +00:00
|
|
|
{{- $pctx := . -}}
|
|
|
|
{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
|
|
|
|
{{- $pages := slice -}}
|
|
|
|
{{- if or $.IsHome $.IsSection -}}
|
|
|
|
{{- $pages = $pctx.RegularPages -}}
|
|
|
|
{{- else -}}
|
|
|
|
{{- $pages = $pctx.Pages -}}
|
|
|
|
{{- 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 }}
|
2022-01-03 21:57:51 +00:00
|
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:content="http://purl.org/rss/1.0/modules/content/">
|
2021-11-25 23:49:05 +00:00
|
|
|
<channel>
|
|
|
|
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
|
|
|
|
<link>{{ .Permalink }}</link>
|
2021-12-02 22:10:59 +00:00
|
|
|
<image>
|
2021-12-02 23:55:43 +00:00
|
|
|
<url>{{ .Permalink }}img/avatar.png</url>
|
2021-12-02 22:10:59 +00:00
|
|
|
<title>Greg Gauthier</title>
|
2022-01-01 23:45:38 +00:00
|
|
|
<link>{{ .Permalink }}</link>
|
2021-12-02 22:10:59 +00:00
|
|
|
<width>32</width>
|
|
|
|
<height>32</height>
|
|
|
|
</image>
|
2021-11-29 10:32:45 +00:00
|
|
|
<image>{{ .Permalink }}img/avatar.png</image>
|
2021-11-25 23:49:05 +00:00
|
|
|
<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 }}
|
|
|
|
<language>{{.}}</language>{{end}}{{ with .Site.Author.email }}
|
|
|
|
<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 }}
|
|
|
|
{{- with .OutputFormats.Get "RSS" -}}
|
|
|
|
{{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
|
|
|
|
{{- end -}}
|
|
|
|
{{ range $pages }}
|
|
|
|
<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>
|
2022-01-01 23:45:38 +00:00
|
|
|
|
|
|
|
{{ if isset .Params "image" }}
|
2022-01-03 12:21:24 +00:00
|
|
|
{{ $cdnUrl := .Site.Params.blogCdnUrl }}
|
2022-01-01 23:45:38 +00:00
|
|
|
{{ with .Params.image }}
|
2022-01-03 12:21:24 +00:00
|
|
|
<enclosure url="{{ $cdnUrl }}{{ . }}" type="image/jpg"/>
|
2022-01-01 23:45:38 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
2021-11-26 22:49:07 +00:00
|
|
|
<description>
|
|
|
|
{{`<![CDATA[ ` | safeHTML }}
|
2022-01-03 12:21:24 +00:00
|
|
|
{{ if isset .Params "image" }}
|
|
|
|
{{ $cdnUrl := .Site.Params.blogCdnUrl }}
|
|
|
|
<p><img src="{{ $cdnUrl }}{{ with .Params.image }}{{.}}{{ end }}"/></p>{{end}}
|
2021-11-26 22:49:07 +00:00
|
|
|
{{ .Summary | safeHTML }}
|
|
|
|
]]>
|
2021-11-25 23:49:05 +00:00
|
|
|
</description>
|
2022-01-03 21:57:51 +00:00
|
|
|
<content:encoded>
|
|
|
|
{{`<![CDATA[ ` | safeHTML }}
|
|
|
|
{{ if isset .Params "image" }}
|
|
|
|
{{ $cdnUrl := .Site.Params.blogCdnUrl }}
|
|
|
|
<p><img src="{{ $cdnUrl }}{{ with .Params.image }}{{.}}{{ end }}"/></p>
|
|
|
|
{{end}}
|
|
|
|
{{ .Content | safeHTML }}
|
|
|
|
]]>
|
|
|
|
</content:encoded>
|
|
|
|
|
|
|
|
|
2021-11-25 23:49:05 +00:00
|
|
|
</item>
|
|
|
|
{{ end }}
|
|
|
|
</channel>
|
|
|
|
</rss>
|