aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/home.html
blob: 4d4271f64425fa74d6541fe375f1e90d7523ceb1 (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 }}