From: Duje Mihanović Date: Wed, 30 Aug 2023 15:38:28 +0000 (+0200) Subject: Rework RSS X-Git-Url: http://git.dujemihanovic.xyz/%7B%7B%20.RelPermalink%20%7D%7D?a=commitdiff_plain;h=94f68171c3312c5a5fea7323ef813b84e24d09a1;p=dujemihanovic.xyz.git Rework RSS The title of the feed has been simplified and the feed under posts/ has been dropped, instead the index feed now just contains the blog posts. Also, add my email so I show up in webMaster and managingEditor. --- diff --git a/hugo.toml b/hugo.toml index c6ef285..66bd6a1 100644 --- a/hugo.toml +++ b/hugo.toml @@ -4,3 +4,6 @@ title = "Duje Mihanović's Site" enableGitInfo = true [author] name = 'Duje Mihanović' + email = 'duje.mihanovic@skole.hr' +[outputs] + section = ['HTML'] diff --git a/layouts/posts/rss.xml b/layouts/rss.xml similarity index 66% rename from layouts/posts/rss.xml rename to layouts/rss.xml index cf49e0c..18d4ff6 100644 --- a/layouts/posts/rss.xml +++ b/layouts/rss.xml @@ -1,21 +1,9 @@ -{{- $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 -}} {{- printf "" | safeHTML }} - {{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }} + {{ .Site.Title }} {{ .Permalink }} - Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }} + Recent content on {{ .Site.Title }} Hugo -- gohugo.io {{ site.Language.LanguageCode }}{{ with .Site.Author.email }} {{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Author.email }} @@ -25,7 +13,8 @@ {{- with .OutputFormats.Get "RSS" -}} {{ printf "" .Permalink .MediaType | safeHTML }} {{- end -}} - {{ range $pages }} + {{ with .Site.GetPage "posts/" }} + {{ range .Pages | first .Site.Config.Services.RSS.Limit }} {{ .Title }} {{ .Permalink }} @@ -35,5 +24,6 @@ {{ .Content | html }} {{ end }} + {{ end }}