From 48e259cc72614e7efc35c04f6d796e1e2e579a89 Mon Sep 17 00:00:00 2001 From: surtur Date: Fri, 9 Oct 2020 22:27:39 +0200 Subject: [PATCH 1/2] add: smarter rss template * as per https://www.godo.dev/tutorials/hugo-full-text-rss/ --- layouts/_default/rss.xml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 layouts/_default/rss.xml diff --git a/layouts/_default/rss.xml b/layouts/_default/rss.xml new file mode 100644 index 0000000..beaf943 --- /dev/null +++ b/layouts/_default/rss.xml @@ -0,0 +1,26 @@ + + + {{ 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 -- gohugo.io{{ with .Site.LanguageCode }} + {{.}}{{end}}{{ with .Site.Author.email }} + {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Author.email }} + {{.}}{{ 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 }} + + -- 2.47.0 From 059a242a743da30e55e1bb8b434f1196bd385881 Mon Sep 17 00:00:00 2001 From: surtur Date: Fri, 9 Oct 2020 22:59:05 +0200 Subject: [PATCH 2/2] add: add link to the feed to index --- layouts/index.html | 1 + 1 file changed, 1 insertion(+) diff --git a/layouts/index.html b/layouts/index.html index 24e1d76..0a8243a 100644 --- a/layouts/index.html +++ b/layouts/index.html @@ -30,6 +30,7 @@ -- 2.47.0