2022-06-24 02:20:54 +02: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 -}}
|
|
|
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
|
|
|
<title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title>
|
|
|
|
<link href="{{ .Permalink }}index.xml" rel="self"/>
|
|
|
|
<link href="{{ .Permalink }}"/>{{ if not .Date.IsZero }}
|
|
|
|
<updated>{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</updated>{{ end }}
|
|
|
|
<id>{{ .Permalink }}</id>{{ with .Site.Author.name }}
|
|
|
|
<author>
|
|
|
|
<name>{{.}}</name>{{ with $.Site.Author.email }}
|
|
|
|
<email>{{.}}</email>{{end}}
|
|
|
|
</author>{{end}}
|
2022-06-24 02:35:36 +02:00
|
|
|
<generator>Hugo -- gohugo.io</generator>{{ range $pages.ByLastmod.Reverse }}
|
2022-06-24 02:20:54 +02:00
|
|
|
<entry>
|
|
|
|
{{ `<title type="html"><![CDATA[` | safeHTML }}{{ .Title }}]]></title>
|
|
|
|
<link href="{{ .Permalink }}"/>
|
|
|
|
<id>{{ .Permalink }}</id>{{ with $.Site.Author.name }}
|
|
|
|
<author>
|
|
|
|
<name>{{.}}</name>
|
|
|
|
</author>{{end}}
|
|
|
|
<published>{{ .Date.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</published>
|
|
|
|
<updated>{{ .Lastmod.Format "2006-01-02T15:04:05-07:00" | safeHTML }}</updated>
|
|
|
|
{{ if .Content }}
|
2022-06-24 02:35:36 +02:00
|
|
|
{{ `<content type="html"><![CDATA[` | safeHTML }}
|
|
|
|
{{ .Content }}
|
|
|
|
{{ $c := .Content }}
|
|
|
|
{{ $alink := .Permalink }}
|
|
|
|
{{ range .Resources.ByType "image" }}
|
|
|
|
{{ if and (not (in $c .Name)) (not (in .Name "banner")) }}
|
2022-06-24 02:38:28 +02:00
|
|
|
<a href="{{ $alink }}" class="article_image no_underline"> <img loading="lazy" src="{{ .Permalink }}" alt="{{ .Name }}" width=780 height="520" /><br> {{ .Name }} </a>
|
2022-06-24 02:35:36 +02:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
]]></content>
|
2022-06-24 02:20:54 +02:00
|
|
|
{{ end }}
|
|
|
|
</entry>{{ end }}
|
|
|
|
</feed>
|