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.html | |
| parent | f1e008670cd865520eb5f21fe6e7b56f02076a23 (diff) | |
fix(section): cannot execute home_logs
Diffstat (limited to 'backend/templates/home.html')
| -rw-r--r-- | backend/templates/home.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/backend/templates/home.html b/backend/templates/home.html index ce4f4e8..3ff9ce3 100644 --- a/backend/templates/home.html +++ b/backend/templates/home.html @@ -1,12 +1,14 @@ {{define "body"}} <main id="content"> <div class="introduction"> - <h1>logs</h1> + <h1>{{ .Name }}</h1> <p>{{ .PageDescription }}</p> </div> {{ range .Sections }} <div> - {{ template "logs_display" . }} + <h2>{{ .Name }}</h2> + <p>{{ .Description }}</p> + {{ template "logs_display" . }} </div> {{ end }} </main> |
