You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
523 B
JSON
16 lines
523 B
JSON
[
|
|
{{- $pages := where .Site.Pages "Kind" "in" (slice "page" "section") -}}
|
|
{{- $pages = where $pages "Params.booksearchexclude" "!=" true -}}
|
|
{{- $pages = where $pages "Content" "not in" (slice nil "") -}}
|
|
|
|
{{ range $index, $page := $pages }}
|
|
{{ if gt $index 0}},{{end}} {
|
|
"id": {{ $index }},
|
|
"href": "{{ $page.RelPermalink }}",
|
|
"title": {{ (partial "docs/title" $page) | jsonify }},
|
|
"section": {{ (partial "docs/title" $page.Parent) | jsonify }},
|
|
"content": {{ $page.Plain | jsonify }}
|
|
}
|
|
{{- end -}}
|
|
]
|