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 . }} {{ range . }}
{{ $bucket_name := .Name }} {{ $bucket_name := .Name }}
{{ $bucket_display_name := .DisplayName }} {{ $bucket_display_name := .DisplayName }}
<details class="documentationCategorie"> <details>
<summary class="documentationDescription">{{ $bucket_display_name }}</summary> <summary>{{ $bucket_display_name }}</summary>
<ul> <ul>
{{ range .Documents }} {{ range .Documents }}
<li class="documentationDocument"> <a href="/public/documentation/{{ $bucket_name }}/{{ . }}">{{ . }}</a></li> <li> <a href="/public/documentation/{{ $bucket_name }}/{{ . }}">{{ . }}</a></li>
{{ end}} {{ end}}
</ul> </ul>
</details> </details>