10 lines
235 B
JSON
10 lines
235 B
JSON
[{{ range $index, $page := .Site.Pages }}
|
|
{{- if ne $page.Type "json" -}}
|
|
{{- if and $index (gt $index 0) -}},{{- end }}
|
|
{
|
|
"uri": "{{ $page.Permalink }}",
|
|
"links": {{ $page.Scratch.Get "links" | jsonify }}
|
|
}
|
|
{{- end -}}
|
|
{{- end -}}]
|