You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
608 B
JSON
16 lines
608 B
JSON
{{- $page := . -}}
|
|
|
|
{{- $page.Scratch.Add "paige_index" slice -}}
|
|
{{- range where site.RegularPages "Params.paige.search.hide_page" "ne" true -}}
|
|
{{- $page.Scratch.Add "paige_index" (dict
|
|
"categories" .Params.categories
|
|
"date" .PublishDate
|
|
"description" (.Description | markdownify | plainify | htmlUnescape)
|
|
"keywords" .Params.keywords
|
|
"link" .RelPermalink
|
|
"tags" .Params.tags
|
|
"text" (strings.TrimRight " " (replace (.Plain | htmlUnescape) "\n" " "))
|
|
"title" (.Title | markdownify | plainify | htmlUnescape)) -}}
|
|
{{- end -}}
|
|
{{- $page.Scratch.Get "paige_index" | jsonify -}}
|