1
Fork 0
theorangeone.net-legacy/layouts/_default/search.json
Jake Howard cabc93dd5d
Add a root API with all pages
Useful for some helper scripts
2021-08-05 22:33:35 +01:00

8 lines
243 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 }}