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

elements.html « section « layouts « exampleSite - github.com/dewittn/hugo-html5up-alpha.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03b349c5be0594f873cdf0b5e6bf8f243ff853d3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ define "main" }}
{{/* An example of custom layout. Displays each page in the elements folder as a <section> of the /elements page. */}}
<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 }}