Files
web/themes/minimal-black/layouts/index.json
2026-03-23 18:35:59 +01:00

18 lines
373 B
JSON

{{- $pages := slice -}}
{{- range .Site.RegularPages -}}
{{- $summary := .Summary -}}
{{- if not $summary -}}
{{- $summary = .Description -}}
{{- end -}}
{{- $pages = $pages | append (dict
"title" .Title
"permalink" .Permalink
"section" .Section
"summary" (plainify $summary)
) -}}
{{- end -}}
{{- dict "pages" $pages | jsonify -}}