diff options
| author | William Hergès <william@herges.fr> | 2025-10-27 13:44:41 +0100 |
|---|---|---|
| committer | William Hergès <william@herges.fr> | 2025-10-27 13:44:41 +0100 |
| commit | ef3f8de38795a92dfc5d232a533c37d53794f1c8 (patch) | |
| tree | f65a1095724fd0f257158532f496d2d45a6f8fb5 /backend/templates/home_log.html | |
| parent | f1e008670cd865520eb5f21fe6e7b56f02076a23 (diff) | |
fix(section): cannot execute home_logs
Diffstat (limited to 'backend/templates/home_log.html')
| -rw-r--r-- | backend/templates/home_log.html | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/backend/templates/home_log.html b/backend/templates/home_log.html index 485661c..28bf36a 100644 --- a/backend/templates/home_log.html +++ b/backend/templates/home_log.html @@ -1,3 +1,10 @@ {{define "body"}} -<main id="content">{{ template "logs_display" . }}</main> +<main id="content"> + {{ range .Sections }} + <div class="introduction"> + <h1>{{ .Name }}</h1> + <p>{{ .Description }}</p> + </div> + {{ template "logs_display" . }} {{ end }} +</main> {{end}} |
