extroonie.com/layouts/_default/taxonomy.json

17 lines
455 B
JSON
Raw Permalink Normal View History

2025-08-11 04:38:11 +06:00
{
"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 }}
]
}