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

elements.html « section « layouts - github.com/dewittn/hugo-html5up-alpha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5d9d0837649c29aad80b2c9e3893ee90fb1ead34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "main" }}
{{/* A custom layout for /elements that displays each subpage as a <sectino> */}}
<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 }}