2023-03-24 20:05:52 -04:00
|
|
|
{{ define "documentation-html" }}
|
2023-08-15 14:30:10 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>AGECEM | Documentation</title>
|
2023-08-16 15:10:49 -04:00
|
|
|
<link rel="stylesheet" href="/public/css/documentation.css">
|
2023-08-15 14:30:10 -04:00
|
|
|
{{ template "general-html" }}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ template "header-html" }}
|
|
|
|
<div class="wrapper documentationWrapper">
|
|
|
|
<h1 class="heading1">Documentation</h1>
|
|
|
|
<p>
|
2023-08-20 18:35:07 -04:00
|
|
|
{{ range .Data.Buckets }}
|
2023-04-26 18:27:58 -04:00
|
|
|
{{ $bucket_name := .Name }}
|
2023-08-15 15:58:12 -04:00
|
|
|
{{ $bucket_display_name := .DisplayName }}
|
2023-08-16 14:04:43 -04:00
|
|
|
<details class="documentationCategorie">
|
|
|
|
<summary class="documentationDescription">{{ $bucket_display_name }}</summary>
|
2023-04-26 16:51:13 -04:00
|
|
|
|
2023-08-16 15:10:49 -04:00
|
|
|
<ul class="documentationListe">
|
2023-04-26 16:51:13 -04:00
|
|
|
{{ range .Documents }}
|
2023-08-16 15:10:49 -04:00
|
|
|
<a class ="documentationLien" href="/public/documentation/{{ $bucket_name }}/{{ . }}"><li class="documentationDocument">{{ . }}</li></a>
|
2023-04-26 16:51:13 -04:00
|
|
|
{{ end}}
|
|
|
|
</ul>
|
2023-07-24 14:59:38 -04:00
|
|
|
</details>
|
2023-08-15 14:30:10 -04:00
|
|
|
{{ end }}
|
|
|
|
</p>
|
2023-08-20 18:35:07 -04:00
|
|
|
<p>
|
|
|
|
{{ .Message }}
|
|
|
|
</p>
|
2023-08-15 14:30:10 -04:00
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
2023-03-24 20:05:52 -04:00
|
|
|
{{ end }}
|