empresalibre.net/source/layouts/_default/index.js

10 lines
229 B
JavaScript
Raw Normal View History

2021-11-04 22:52:22 -06:00
var docs = [
{{ range $index, $page := (where .Site.Pages "Section" "docs") -}}
{
id: {{ $index }},
title: "{{ .Title }}",
description: "{{ .Params.description }}",
href: "{{ .URL | relURL }}"
},
{{ end -}}
];