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