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

9 lines
243 B
JSON
Raw Normal View History

2021-07-03 10:30:48 +01:00
{{- $result := slice -}}
{{- range (where .Site.RegularPages "Section" "!=" "") -}}
{{- $data := dict "title" .Title "content" .Plain "id" .File.UniqueID -}}
2021-07-03 10:30:48 +01:00
{{- $result = $result | append $data -}}
{{- end -}}
{{ jsonify $result }}