website-theme/layouts/_default/list.json

10 lines
377 B
JSON
Raw Normal View History

2018-10-08 06:37:58 -04:00
[{{ range $index, $page := .Pages }}{{ if ne $index 0 }},{{ end }}
{
"ref": "{{ $page.Permalink }}",
"title": {{ $page.Title | jsonify }},
"section": "{{ $page.Section }}",
2022-05-08 18:02:35 -04:00
"tags": {{ $page.Params.tags | jsonify }},
2018-10-08 06:37:58 -04:00
"date" : {{ $page.Date.Format "2006.01.02" | jsonify }},
"body": {{ $page.Plain | jsonify }}
}
2022-05-08 18:02:35 -04:00
{{ end }}]