aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/home.html
blob: d5dbb28bc61d9760264290fb7a9703b4d292f09e (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 "section_display" . }}
  </div>
  {{ end }}
</main>
{{end}}