8 lines
208 B
JSON
8 lines
208 B
JSON
{{ $valid_pages := where (where .Site.Pages.ByTitle "Kind" "page") ".Parent" "!=" nil }}
|
|
|
|
{
|
|
{{ range $i, $e := $valid_pages }}
|
|
{{ if $i }}, {{ end }}
|
|
{{ partial "page_data.json" . }}
|
|
{{ end }}
|
|
}
|