1
0
beire-hugo/inc/themes/api-theme/layouts/_default/list.api.json
2024-11-22 23:57:15 +01:00

10 lines
223 B
JSON

{{ define "response" }}
{
{{ with .Section }}"section" : "{{ . }}",{{ end }}
"count" : "{{ len .Data.Pages }}",
"items" : [{{ range $i, $e := .Data.Pages }}
{{ if $i }}, {{ end }}{{ .Render "item" }}
{{ end }}]
}
{{ end }}