fix: avoid error if unset
This commit is contained in:
@ -95,7 +95,7 @@ Source:
|
||||
// https://discourse.gohugo.io/t/range-length-or-last-element/3803/2
|
||||
|
||||
{{ $list := slice }}
|
||||
{{- if eq (len .Site.Params.options.searchSectionsIndex) 0 }}
|
||||
{{- if or (not (isset .Site.Params.options "searchsectionsindex")) (eq (len .Site.Params.options.searchSectionsIndex) 0) }}
|
||||
{{- $list = (where .Site.Pages "Section" "docs") }}
|
||||
{{- else }}
|
||||
{{- $list = (where .Site.Pages "Type" "in" .Site.Params.options.searchSectionsIndex) }}
|
||||
|
Reference in New Issue
Block a user