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

list.html « _default « layouts - github.com/uicardiodev/hugo-lime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4d57bdfb9dd0a6ecd8b7f5e8dd70f7736c64a1cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{{ $navtype := "hello" }}
{{ partial "header.html" . }}
{{ partial "nav.html" . }}

<section class="container py-5">
  <h1>{{ .Title }}</h1>

  {{ range .Pages }}
    <li>
        <a href="{{.Permalink}}">{{.Title}}</a>
    </li>
  {{ end }}
</section>

{{ partial "footer.html" . }}
{{ partial "footer-end.html" }}