tpl: Adjust the RSS taxonomy logic
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 18 Feb 2020 16:29:46 +0000 (17:29 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 18 Feb 2020 16:29:46 +0000 (17:29 +0100)
See #6909

tpl/tplimpl/embedded/templates.autogen.go
tpl/tplimpl/embedded/templates/_default/rss.xml

index c9dec898842840adcc2ebee4fc39aef66886cf74..821354c9979d20af4297eee0062ed86edf5e3439 100644 (file)
@@ -22,10 +22,10 @@ var EmbeddedTemplates = [][2]string{
        {`_default/rss.xml`, `{{- $pctx := . -}}
 {{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
 {{- $pages := slice -}}
-{{- if eq $.Kind "taxonomyTerm" -}}
-{{- $pages = $pctx.Pages -}}
-{{- else -}}
+{{- if or $.IsHome $.IsSection -}}
 {{- $pages = $pctx.RegularPages -}}
+{{- else -}}
+{{- $pages = $pctx.Pages -}}
 {{- end -}}
 {{- $limit := .Site.Config.Services.RSS.Limit -}}
 {{- if ge $limit 1 -}}
index 5ec2025b6c6c9b571aaae67c38c635601858f59e..8bdf02ad72f9c8409688b38d20f8a0e771fb56ed 100644 (file)
@@ -1,10 +1,10 @@
 {{- $pctx := . -}}
 {{- if .IsHome -}}{{ $pctx = .Site }}{{- end -}}
 {{- $pages := slice -}}
-{{- if eq $.Kind "taxonomyTerm" -}}
-{{- $pages = $pctx.Pages -}}
-{{- else -}}
+{{- if or $.IsHome $.IsSection -}}
 {{- $pages = $pctx.RegularPages -}}
+{{- else -}}
+{{- $pages = $pctx.Pages -}}
 {{- end -}}
 {{- $limit := .Site.Config.Services.RSS.Limit -}}
 {{- if ge $limit 1 -}}