12 lines
395 B
JSON
12 lines
395 B
JSON
![]() |
[
|
||
|
{{- range $index, $entry := where .Site.RegularPages "Kind" "page" }}
|
||
|
{{- if $index }}, {{ end }}
|
||
|
{
|
||
|
"permalink": "{{ .Permalink | relURL }}",
|
||
|
"title": {{ .Title | jsonify }},
|
||
|
"content": {{ replace .Plain | jsonify }},
|
||
|
"date": {{ .Date.Format $.Site.Params.timeFormat | jsonify }},
|
||
|
"updated": {{ .Lastmod.Format $.Site.Params.timeFormat | jsonify }}
|
||
|
}
|
||
|
{{- end }}
|
||
|
]
|