You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
2.6 KiB
XML
70 lines
2.6 KiB
XML
{{ $page := . }}
|
|
|
|
{{ $limit := $page.Site.Config.Services.RSS.Limit }}
|
|
{{ $pages := "" }}
|
|
{{ $pagesource := cond $page.IsHome $page.Site $page }}
|
|
{{ $title := partial "paige/func-title.html" $page }}
|
|
|
|
{{ if or $page.IsHome $page.IsSection }}
|
|
{{ $pages = $pagesource.RegularPages }}
|
|
{{ else }}
|
|
{{ $pages = $pagesource.Pages }}
|
|
{{ end }}
|
|
|
|
{{ if ge $limit 1 }}
|
|
{{ $pages = $pages | first $limit }}
|
|
{{ end }}
|
|
|
|
{{ $pages = where $pages "Params.paige.hide_rss" "ne" true }}
|
|
|
|
{{ printf "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }}
|
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
|
<channel>
|
|
{{ with $page.OutputFormats.Get "RSS" }}
|
|
{{ printf `<atom:link href="%s" rel="self" type="%s"/>` .Permalink .MediaType | safeHTML }}
|
|
{{ end }}
|
|
{{ with $page.Site.Copyright }}
|
|
<copyright>{{ . }}</copyright>
|
|
{{ end }}
|
|
<description>{{ with $title -}} {{- . -}} {{- else -}} Recent content {{- end }}</description>
|
|
{{ with $page.Site.LanguageCode | default .Site.Language.Lang }}
|
|
<language>{{ . }}</language>
|
|
{{ end }}
|
|
{{ if and $page.PublishDate (not $page.PublishDate.IsZero) }}
|
|
<lastBuildDate>{{ $page.PublishDate.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>
|
|
{{ end }}
|
|
<link>{{ $page.Permalink }}</link>
|
|
{{ with $page.Site.Params.paige.rss.managing_editor }}
|
|
<managingEditor>{{ . }}</managingEditor>
|
|
{{ end }}
|
|
{{ with $title }}
|
|
<title>{{ . }}</title>
|
|
{{ end }}
|
|
{{ with $page.Site.Params.paige.rss.web_master }}
|
|
<webMaster>{{ . }}</webMaster>
|
|
{{ end }}
|
|
{{ range $pages }}
|
|
<item>
|
|
{{ with partial "paige/func-authors.html" . }}
|
|
<author>{{ . }}</author>
|
|
{{ end }}
|
|
{{ if .Content }}
|
|
<description>{{ printf "<![CDATA[%s]]>" .Content | safeHTML }}</description>
|
|
{{ else if .Description }}
|
|
<description>{{ .Description | markdownify | html }}</description>
|
|
{{ end }}
|
|
{{ with .Permalink }}
|
|
<guid>{{ . }}</guid>
|
|
<link>{{ . }}</link>
|
|
{{ end }}
|
|
{{ with .PublishDate }}
|
|
<pubDate>{{ .Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
|
{{ end }}
|
|
{{ with .Title }}
|
|
<title>{{ . | markdownify | plainify | htmlUnescape }}</title>
|
|
{{ end }}
|
|
</item>
|
|
{{ end }}
|
|
</channel>
|
|
</rss>
|