blob: 9fae26d8281eddb76ea2d16116c31e26d9bd027c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{{ $dateFormat := .Site.Params.dateFormat | default ":date_medium" }}
{{- $.Scratch.Add "index" slice -}}
{{- range (where .Site.RegularPages "Type" "in" .Site.Params.mainSections) -}}
{{- $.Scratch.Add "index" (dict "title" .Title
"tags" .Params.tags
"categories" .Params.categories
"contents" (.Summary | plainify)
"date" (time.Format $dateFormat .Date)
"permalink" .Permalink) -}}
{{- end -}}
{{- $.Scratch.Get "index" | jsonify -}}
|