13 lines
432 B
JSON
13 lines
432 B
JSON
[
|
|
{{- range $index, $entry := where .Site.RegularPages "Kind" "page" }}
|
|
{{- if $index }}, {{ end }}
|
|
{
|
|
"objectID": "{{ .Date.Unix }}",
|
|
"permalink": "{{ .Permalink | relURL }}",
|
|
"title": {{ .Title | jsonify }},
|
|
"content": {{ .Plain | jsonify | safeJS }},
|
|
"date": {{ .Date.Format $.Site.Params.timeFormat | jsonify }},
|
|
"updated": {{ .Lastmod.Format $.Site.Params.timeFormat | jsonify }}
|
|
}
|
|
{{- end }}
|
|
] |