congo/layouts/_default/index.json

7 lines
389 B
JSON
Raw Normal View History

2022-02-03 00:46:21 +00:00
{{- $index := slice -}}
2022-01-13 04:56:30 +00:00
{{- range .Site.RegularPages -}}
{{ $section := .Site.GetPage "section" .Section }}
2022-02-03 00:46:21 +00:00
{{- $index = $index | append (dict "date" (.Date | time.Format (.Site.Language.Params.dateFormat | default ":date_long")) "title" .Title "section" $section.Title "summary" .Summary "content" (.Plain | safeJS) "permalink" .RelPermalink) -}}
2022-01-13 04:56:30 +00:00
{{- end -}}
2022-02-03 00:46:21 +00:00
{{- $index | jsonify -}}