0c28a4ad5a
- to hide particular pages from search usage: in page's front-matter add searchHidden: true
8 lines
290 B
JSON
8 lines
290 B
JSON
{{- $.Scratch.Add "index" slice -}}
|
|
{{- range .Site.RegularPages -}}
|
|
{{- if not .Params.searchHidden }}
|
|
{{- $.Scratch.Add "index" (dict "title" .Title "content" .Plain "permalink" .Permalink "summary" .Summary) -}}
|
|
{{- end }}
|
|
{{- end -}}
|
|
{{- $.Scratch.Get "index" | jsonify -}}
|