aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/home_log.html
diff options
context:
space:
mode:
authorWilliam Hergès <william@herges.fr>2025-10-27 13:44:41 +0100
committerWilliam Hergès <william@herges.fr>2025-10-27 13:44:41 +0100
commitef3f8de38795a92dfc5d232a533c37d53794f1c8 (patch)
treef65a1095724fd0f257158532f496d2d45a6f8fb5 /backend/templates/home_log.html
parentf1e008670cd865520eb5f21fe6e7b56f02076a23 (diff)
fix(section): cannot execute home_logs
Diffstat (limited to 'backend/templates/home_log.html')
-rw-r--r--backend/templates/home_log.html9
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}}