15 lines
830 B
JSON
15 lines
830 B
JSON
|
{{/* layouts/_default/index.json */}}
|
||
|
{{- $index := slice -}}
|
||
|
{{- range where .Site.RegularPages.ByDate.Reverse "Type" "not in" (slice "page" "json") -}}
|
||
|
{{ if .Params.dateCreated }}
|
||
|
{{ $.Scratch.Set "date" (.Params.dateCreated) }}
|
||
|
{{ else }}
|
||
|
{{- if isset site.Params "date_format" -}}
|
||
|
{{- $.Scratch.Set "date" (.Date.Format site.Params.date_format) -}}
|
||
|
{{- else -}}
|
||
|
{{- $.Scratch.Set "date" (.Date.Format "2006-01-02") -}}
|
||
|
{{- end -}}
|
||
|
{{ end }}
|
||
|
{{- $index = $index | append (dict "title" ( .Title | plainify ) "permalink" .Permalink "section" (i18n (.Section | title)) "tags" (apply .Params.tags "i18n" "." ) "categories" (apply .Params.categories "i18n" "." ) "summary" (.Params.summary | markdownify | htmlUnescape | plainify) "date" ($.Scratch.Get "date") ) -}}
|
||
|
{{- end -}}
|
||
|
{{- $index | jsonify -}}
|