feature/affichage-documentation #105

Merged
vlbeaudoin merged 7 commits from feature/affichage-documentation into main 2023-08-16 17:53:30 -04:00
Showing only changes of commit 5bebc1e670 - Show all commits

View file

@ -14,12 +14,12 @@
{{ range . }}
{{ $bucket_name := .Name }}
{{ $bucket_display_name := .DisplayName }}
<details class="documentationCategorie">
<summary class="documentationDescription">{{ $bucket_display_name }}</summary>
<details>
<summary>{{ $bucket_display_name }}</summary>
<ul>
{{ range .Documents }}
<li class="documentationDocument"> <a href="/public/documentation/{{ $bucket_name }}/{{ . }}">{{ . }}</a></li>
<li> <a href="/public/documentation/{{ $bucket_name }}/{{ . }}">{{ . }}</a></li>
{{ end}}
</ul>
</details>