Welcome to mirror list, hosted at ThFree Co, Russian Federation.

section.html « _default « layouts - github.com/dewittn/hugo-html5up-alpha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3151171be5c9d06155e6705a72adadfff07038ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{{ define "main" }}
<header>
  <h2>{{ .Title }}</h2>
  <p>{{ .Description }}</p>
</header>
{{ range .Pages }}
<div class="row">
  <div class="col-12">
    <section class="box">
      {{ .Content }}
    </section>
  </div>
</div>
{{ end }}
{{ end }}