authelia/docs/layouts/_default/index.js
James Elliott b2c60ef898
feat: major documentation refresh (#3475)
This marks the launch of the new documentation website.
2022-06-15 17:51:47 +10:00

11 lines
239 B
JavaScript

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