mirror of
https://github.com/Extroonie/extroonie.com.git
synced 2026-07-07 07:06:42 -07:00
16 lines
455 B
JSON
16 lines
455 B
JSON
{
|
|
"title": "{{ .Title }}",
|
|
"type": "taxonomy",
|
|
"url": "{{ .Permalink }}",
|
|
"pages": [
|
|
{{ range $index, $page := .Pages }}
|
|
{{ if $index }},{{ end }}
|
|
{
|
|
"title": "{{ $page.Title }}",
|
|
"url": "{{ $page.RelPermalink }}",
|
|
"date": "{{ $page.Date.Format "2006-01-02" }}",
|
|
"description": "{{ $page.Description }}"
|
|
}
|
|
{{ end }}
|
|
]
|
|
}
|