Make term.atom.xml a regular file
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
For some reason (probably because of Go...) Hugo stopped supporting symbolic links.
This commit is contained in:
parent
c50986c026
commit
354a436343
1 changed files with 37 additions and 1 deletions
|
@ -1 +0,0 @@
|
||||||
../index.atom.xml
|
|
37
layouts/term/term.atom.xml
Normal file
37
layouts/term/term.atom.xml
Normal file
|
@ -0,0 +1,37 @@
|
||||||
|
{{- $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.Params.Author.name }}
|
||||||
|
<author>
|
||||||
|
<name>{{.}}</name>{{ with $.Site.Params.Author.email }}
|
||||||
|
<email>{{.}}</email>{{end}}
|
||||||
|
</author>{{end}}
|
||||||
|
<generator>Hugo -- gohugo.io</generator>{{ range $pages }}
|
||||||
|
<entry>
|
||||||
|
{{ `<title type="html"><![CDATA[` | safeHTML }}{{ .Title }}]]></title>
|
||||||
|
<link href="{{ .Permalink }}"/>
|
||||||
|
<id>{{ .Permalink }}</id>{{ with $.Site.Params.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 }}
|
||||||
|
{{ `<content type="html"><![CDATA[` | safeHTML }}{{ .Content }}]]></content>
|
||||||
|
{{ end }}
|
||||||
|
</entry>{{ end }}
|
||||||
|
</feed>
|
Loading…
Reference in a new issue