status-desktop/devuser_guide/layouts/_default/index.js

10 lines
229 B
JavaScript
Raw Normal View History

2021-05-07 16:15:41 +00:00
var docs = [
{{ range $index, $page := (where .Site.Pages "Section" "docs") -}}
{
id: {{ $index }},
title: "{{ .Title }}",
description: "{{ .Params.description }}",
href: "{{ .URL | relURL }}"
},
{{ end -}}
];