summaryrefslogtreecommitdiffstats
path: root/layouts/_default/list.json.json
diff options
context:
space:
mode:
authorSerghei Iakovlev <egrep@protonmail.ch>2022-05-29 10:36:53 +0200
committerSerghei Iakovlev <egrep@protonmail.ch>2022-05-29 10:37:50 +0200
commit8dee2d1294b1f045621ebb93b1f9407d6fccd5ec (patch)
tree9f14ac105a2eda5584299555f7ea5edbb562aeee /layouts/_default/list.json.json
parent5e3d262a41a71a95f6333609767e3466a214ead4 (diff)
downloadgohugo-theme-ed-8dee2d1294b1f045621ebb93b1f9407d6fccd5ec.tar.gz
Fix default section type for the `params.mainSections`
Diffstat (limited to 'layouts/_default/list.json.json')
-rw-r--r--layouts/_default/list.json.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/layouts/_default/list.json.json b/layouts/_default/list.json.json
index 30b6f80..b912df0 100644
--- a/layouts/_default/list.json.json
+++ b/layouts/_default/list.json.json
@@ -3,7 +3,7 @@
{{- $pages := slice -}}
{{- if $.IsHome -}}
- {{- $mainSections := site.Params.mainSections | default (slice "post") }}
+ {{- $mainSections := site.Params.mainSections | default (slice "posts") }}
{{- $pages = where $pctx.RegularPages.ByDate.Reverse "Type" "in" $mainSections -}}
{{- else if $.IsSection -}}
{{- $pages = $pctx.RegularPages.ByDate.Reverse -}}