From 75501d3abbd1080d592a55549e1477468348a169 Mon Sep 17 00:00:00 2001 From: tastytea Date: Mon, 25 Nov 2019 08:04:13 +0100 Subject: [PATCH] Workaround RSS issue. --- themes/tastytea/layouts/_default/rss.xml | 38 ++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100644 themes/tastytea/layouts/_default/rss.xml diff --git a/themes/tastytea/layouts/_default/rss.xml b/themes/tastytea/layouts/_default/rss.xml new file mode 100644 index 0000000..968db15 --- /dev/null +++ b/themes/tastytea/layouts/_default/rss.xml @@ -0,0 +1,38 @@ +{{- $page_context := cond .IsHome site . -}} +{{- $pages := $page_context.RegularPages -}} + + + {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }} + {{ .Permalink }} + Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }} + Hugo {{ .Hugo.Version }} -- gohugo.io + {{- with .Site.LanguageCode }} + {{ . }} + {{- end }} + {{- with .Site.Author.email }} + {{ . }}{{ with $.Site.Author.name }} ({{ . }}){{ end }} + {{ . }}{{ with $.Site.Author.name }} ({{ . }}){{end}} + {{- end }} + {{- with .Site.Copyright }} + {{ . }} + {{- end }} + {{- if not .Date.IsZero }} + {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} + {{- end }} + {{- with .OutputFormats.Get "RSS" }} + {{ printf "" .Permalink .MediaType | safeHTML }} + {{- end }} + {{ range $pages }} + + {{ .Title }} + {{ .Permalink }} + {{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} + {{- with .Site.Author.email }} + {{.}}{{ with $.Site.Author.name }} ({{ . }}){{ end }} + {{- end }} + {{ .Permalink }} + {{- .Content | html -}} + + {{- end }} + +