11 lines
290 B
JavaScript
11 lines
290 B
JavaScript
|
var docs = [
|
||
|
{{ range $index, $page := (where .Site.Pages "Section" "docs") -}}
|
||
|
{
|
||
|
id: {{ $index }},
|
||
|
href: "{{ .Permalink | absURL }}",
|
||
|
title: {{ .Title | jsonify }},
|
||
|
description: {{ .Params.description | jsonify }},
|
||
|
content: {{ .Content | jsonify }}
|
||
|
},
|
||
|
{{ end -}}
|
||
|
];
|