diff options
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> |
