aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/home_section.html
blob: 11018433125940f1da5ea8121485ed69f45087e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
{{ define "body" }}
  <main id="content">
    {{ range .Sections }}
      <div class="introduction">
        <h1>{{ .Name }}</h1>
        <p>{{ .Description }}</p>
      </div>
      {{ template "section_display" . }}
    {{ end }}
  </main>
{{ end }}