mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
b2c60ef898
This marks the launch of the new documentation website.
11 lines
239 B
JavaScript
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 -}}
|
|
];
|