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

terms.html « _default « layouts - github.com/zwbetz-gh/vanilla-bootstrap-hugo-theme.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3a9db61d5ef829b14e413cee55a98d6708eb62ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{{ define "main" }}

<h1>{{ .Title }}</h1>

{{ range .Data.Terms.Alphabetical }}
  <p>
    <a class="btn btn-outline-dark font-125" href="{{ .Page.RelPermalink }}">
      <span class="badge badge-dark">{{ .Count }}</span> {{ .Page.Title }}
    </a>
  </p>
{{ end }}

{{ end }}