13 lines
372 B
JSON
13 lines
372 B
JSON
|
[
|
||
|
{{ range $index, $page := .Site.Pages }}
|
||
|
{{ if ne $index 0 }},{{ end }}
|
||
|
{
|
||
|
"id": {{ $index }},
|
||
|
"href": "{{ $page.RelPermalink }}",
|
||
|
"title": {{ (partial "title" $page) | jsonify }},
|
||
|
"parent": {{ with $page.Parent }}{{ (partial "title" .) | jsonify }}{{ else }}""{{ end }},
|
||
|
"content": {{ $page.Plain | jsonify }}
|
||
|
}
|
||
|
{{ end }}
|
||
|
]
|