From: Duje Mihanović <duje.mihanovic@skole.hr> Date: Wed, 30 Aug 2023 15:38:28 +0000 (+0200) Subject: Rework RSS X-Git-Url: http://git.dujemihanovic.xyz/html/static/%7B%7B%20%24.Site.BaseURL%20%7D%7Dposts/%7B%7B%20%24image.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 "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\"?>" | safeHTML }} <rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"> <channel> - <title>{{ if eq .Title .Site.Title }}{{ .Site.Title }}{{ else }}{{ with .Title }}{{.}} on {{ end }}{{ .Site.Title }}{{ end }}</title> + <title>{{ .Site.Title }}</title> <link>{{ .Permalink }}</link> - <description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description> + <description>Recent content on {{ .Site.Title }}</description> <generator>Hugo -- gohugo.io</generator> <language>{{ site.Language.LanguageCode }}</language>{{ with .Site.Author.email }} <managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Author.email }} @@ -25,7 +13,8 @@ {{- with .OutputFormats.Get "RSS" -}} {{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }} {{- end -}} - {{ range $pages }} + {{ with .Site.GetPage "posts/" }} + {{ range .Pages | first .Site.Config.Services.RSS.Limit }} <item> <title>{{ .Title }}</title> <link>{{ .Permalink }}</link> @@ -35,5 +24,6 @@ <description>{{ .Content | html }}</description> </item> {{ end }} + {{ end }} </channel> </rss>