summaryrefslogtreecommitdiff
path: root/themes/terminal/layouts/_default/terms.html
blob: 399d665821dc63c94f559cd2f5d3e2253ad1da88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{{ define "main" }}
  <div class="terms">
    <h1>{{ .Title }}</h1>
    <ul>
      {{ $type := .Type }}
      {{ range $key, $value := .Data.Terms.Alphabetical }}
      {{ $name := .Name }}
      {{ $count := .Count }}
      {{ with $.Site.GetPage (printf "/%s/%s" $type $name) }}
        <li>
          <a class="terms-title" href="{{ .Permalink }}">{{ .Name }} ({{ $count }})</a>
        </li>
      {{ end }}
      {{ end }}
    </ul>
  </div>
{{ end }}