1
Fork 0
theorangeone.net-legacy/layouts/_default/search.json

8 lines
245 B
JSON

{{- $result := slice -}}
{{- range (where .Site.RegularPages "Section" "!=" "") -}}
{{- $data := dict "title" .Title "content" .Plain "id" (.File.UniqueID) -}}
{{- $result = $result | append $data -}}
{{- end -}}
{{ jsonify $result }}