aboutsummaryrefslogtreecommitdiff
path: root/backend/templates/home_section.html
blob: 6f31fc0eb24d40bcd508ae17fa7448abb433edfe (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--no-first" . }}
    {{ end }}
  </main>
{{ end }}