mirror of https://gitlab.com/octtspacc/sitoctt
24 lines
753 B
JavaScript
24 lines
753 B
JavaScript
{{- $index := slice -}}
|
|
{{- $pages := .Site.Pages -}}
|
|
{{- range $pages -}}
|
|
{{- if not .Params.Hidden -}}
|
|
{{- $section := .Site.GetPage "section" .Section -}}
|
|
{{- $page := (dict
|
|
"title" (.Title | emojify | safeJS)
|
|
"section" ($section.Title | emojify | safeJS)
|
|
"summary" (.Summary | safeJS)
|
|
"content" (.Plain | safeJS)
|
|
"permalink" .RelPermalink
|
|
"externalUrl" .Params.externalUrl
|
|
"type" .Type
|
|
) -}}
|
|
{{- if .Date -}}
|
|
{{- $page = (merge $page (dict
|
|
"date" (.Date | time.Format (.Site.Language.Params.dateFormat | default ":date_long"))
|
|
)) -}}
|
|
{{- end -}}
|
|
{{- $index = $index | append $page -}}
|
|
{{- end -}}
|
|
{{- end -}}
|
|
window.SiteSearchIndex={{- $index | jsonify -}}
|