1
Fork 0
theorangeone.net-legacy/layouts/index.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
257 B
JSON

{{- $result := slice -}}
{{- range .Site.RegularPages -}}
{{- $data := dict "title" .Title "id" .File.UniqueID "url" .Permalink "path" .RelPermalink "section" .Section -}}
{{- $result = $result | append $data -}}
{{- end -}}
{{ jsonify $result }}