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