15 lines
439 B
JSON
15 lines
439 B
JSON
{
|
|
{{ range $i, $e := .Data.Pages.ByTitle }}
|
|
{{ if $i }}, {{ end }}
|
|
"{{ .RelPermalink }}": {
|
|
"id": "{{ .UniqueID }}",
|
|
"title": "{{ lower .Title }}",
|
|
"date": "{{ .Date }}",
|
|
"url": "{{ .Permalink }}",
|
|
"link": "{{ .RelPermalink }}",
|
|
"link_title": "{{ .LinkTitle }}"
|
|
"parent": "{{ if .Parent }}{{ lower .Parent.Title }}{{ end }}",
|
|
"tags": {{ jsonify .Params.tags }}
|
|
}
|
|
{{ end }}
|
|
}
|