You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
457 B

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