aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/home.html
blob: 3ff9ce3e24e5b94bd47c5f3ad684718439fd8011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{define "body"}}
<main id="content">
  <div class="introduction">
    <h1>{{ .Name }}</h1>
    <p>{{ .PageDescription }}</p>
  </div>
  {{ range .Sections }}
  <div>
    <h2>{{ .Name }}</h2>
    <p>{{ .Description }}</p>
    {{ template "logs_display" . }}
  </div>
  {{ end }}
</main>
{{end}}