8 lines
392 B
JSON
8 lines
392 B
JSON
{{- $pages := slice }}
|
|
{{- range .Site.Pages }}
|
|
{{- if and .Title (or (ne (.Scratch.Get "relearnIsHiddenStem") true) (ne .Site.Params.disableSearchHiddenPages true) ) }}
|
|
{{- $pages = $pages | append (dict "uri" .RelPermalink "title" .Title "tags" .Params.tags "description" .Description "content" (.Plain | htmlUnescape)) }}
|
|
{{- end }}
|
|
{{- end }}
|
|
{{- $pages | jsonify (dict "indent" " ") }}
|