From: Bjørn Erik Pedersen Date: Tue, 18 Feb 2020 15:55:30 +0000 (+0100) Subject: tpl: Fix RSS template for the terms listing X-Git-Tag: v0.65.0~15 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=aa3e1830568cabaa8bf3277feeba6cb48746e40c;p=brevno-suite%2Fhugo tpl: Fix RSS template for the terms listing Fixes #6909 --- diff --git a/hugolib/taxonomy_test.go b/hugolib/taxonomy_test.go index abe4b97c..6d049a0c 100644 --- a/hugolib/taxonomy_test.go +++ b/hugolib/taxonomy_test.go @@ -561,6 +561,6 @@ categories: ["funny"] b.Assert(funny.Parent(), qt.Equals, cat) b.AssertFileContent("public/categories/funny/index.xml", `http://example.com/p/`) - // TODO https://github.com/gohugoio/hugo/issues/6909 b.AssertFileContent("public/categories/index.xml", `http://example.com/categories/funny/`) + b.AssertFileContent("public/categories/index.xml", `http://example.com/categories/funny/`) } diff --git a/tpl/tplimpl/embedded/templates.autogen.go b/tpl/tplimpl/embedded/templates.autogen.go index f64f18ee..c9dec898 100644 --- a/tpl/tplimpl/embedded/templates.autogen.go +++ b/tpl/tplimpl/embedded/templates.autogen.go @@ -21,7 +21,12 @@ var EmbeddedTemplates = [][2]string{ {`_default/robots.txt`, `User-agent: *`}, {`_default/rss.xml`, `{{- $pctx := . -}} {{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}} -{{- $pages := $pctx.RegularPages -}} +{{- $pages := slice -}} +{{- if eq $.Kind "taxonomyTerm" -}} +{{- $pages = $pctx.Pages -}} +{{- else -}} +{{- $pages = $pctx.RegularPages -}} +{{- end -}} {{- $limit := .Site.Config.Services.RSS.Limit -}} {{- if ge $limit 1 -}} {{- $pages = $pages | first $limit -}} diff --git a/tpl/tplimpl/embedded/templates/_default/rss.xml b/tpl/tplimpl/embedded/templates/_default/rss.xml index 3e17f48c..5ec2025b 100644 --- a/tpl/tplimpl/embedded/templates/_default/rss.xml +++ b/tpl/tplimpl/embedded/templates/_default/rss.xml @@ -1,6 +1,11 @@ {{- $pctx := . -}} {{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}} -{{- $pages := $pctx.RegularPages -}} +{{- $pages := slice -}} +{{- if eq $.Kind "taxonomyTerm" -}} +{{- $pages = $pctx.Pages -}} +{{- else -}} +{{- $pages = $pctx.RegularPages -}} +{{- end -}} {{- $limit := .Site.Config.Services.RSS.Limit -}} {{- if ge $limit 1 -}} {{- $pages = $pages | first $limit -}}