2023-03-24 20:05:52 -04:00
|
|
|
{{ define "documentation-html" }}
|
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="fr">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>AGECEM | Documentation</title>
|
|
|
|
{{ template "general-html" }}
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
{{ template "header-html" }}
|
2023-07-25 13:15:33 -04:00
|
|
|
<h1 class="heading1">Documentation</h1>
|
2023-04-26 16:51:13 -04:00
|
|
|
<p>
|
|
|
|
{{ range . }}
|
2023-04-26 18:27:58 -04:00
|
|
|
{{ $bucket_name := .Name }}
|
2023-07-25 13:15:33 -04:00
|
|
|
<h2 class="heading2">{{ $bucket_name }}</h2>
|
2023-04-26 16:51:13 -04:00
|
|
|
|
|
|
|
<ul>
|
|
|
|
{{ range .Documents }}
|
2023-04-26 18:27:58 -04:00
|
|
|
<li> <a href="/public/documentation/{{ $bucket_name }}/{{ . }}">{{ . }}</a></li>
|
2023-04-26 16:51:13 -04:00
|
|
|
{{ end}}
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|
|
|
|
</p>
|
2023-03-24 20:05:52 -04:00
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
{{ end }}
|