1
Fork 0
theorangeone.net-legacy/layouts/_default/list.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 }}
}