10 lines
223 B
JSON
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 }}
|