diff --git a/config/_default/menus.de.toml b/config/_default/menus.de.toml index 6f11269..5b2f476 100644 --- a/config/_default/menus.de.toml +++ b/config/_default/menus.de.toml @@ -37,6 +37,12 @@ url = "https://www.facebook.com/people/Musikverein-Molbergen-MVM/100040265892660 identifier = "sdIxPeDJlk" weight = 40 +[[main]] +pre = "rss" +url = "index.xml" +identifier = "sdIxKeDJlk" +weight = 50 + [[footer]] none = "none" diff --git a/layouts/_default/rss.xml b/layouts/_default/rss.xml new file mode 100644 index 0000000..4fabea2 --- /dev/null +++ b/layouts/_default/rss.xml @@ -0,0 +1,58 @@ +{{- $pctx := . -}} +{{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}} +{{- $pages := slice -}} +{{- if or $.IsHome $.IsSection -}} +{{- $pages = $pctx.RegularPages -}} +{{- else -}} +{{- $pages = $pctx.Pages -}} +{{- end -}} +{{- /* Filter to only include pages from the artikel section */ -}} +{{- $pages = where $pages "Section" "artikel" -}} +{{- $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 }} + {{ .Permalink }} + Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }} + Hugo -- gohugo.io + {{ site.LanguageCode }}{{ with .Site.Params.Author.email }} + {{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}{{end}}{{ with .Site.Params.Author.email }} + {{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}{{end}} + {{ if .Site.Params.footer.showCopyright | default true -}} + {{ with replace .Site.Params.copyright "{ year }" now.Year }}{{.}}{{ else }}© {{ now.Format "2006" }} {{ .Site.Params.Author.name }}{{- end }} + {{- 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 -}} + {{ if and (.Site.Params.rssnext.feedId) (.Site.Params.rssnext.userId) }} + +{{ .Site.Params.rssnext.feedId }} +{{ .Site.Params.rssnext.userId }} + + {{ end }} + {{ range $pages }} + +{{ .Title }} +{{ .Permalink }} +{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }} + {{ with .Site.Params.Author.email }}{{.}}{{ with $.Site.Params.Author.name }} ({{.}}){{end}}{{end}} + {{ .Permalink }} +{{ .Summary | html }} + {{ range ( where .Site.RegularPages ".RelPermalink" .RelPermalink | first 1 ) }} + {{- $images := .Resources.ByType "image" -}} + {{- $featured := $images.GetMatch "*feature*" -}} + {{- if not $featured }}{{ $featured = $images.GetMatch "{*cover*,*thumbnail*}" }}{{ end -}} + {{- with $featured -}} + + {{- end -}} + {{ end }} + + {{ end }} + +