hugo-theme-nocolor/layouts/_default/terms.html

17 lines
449 B
HTML
Raw Normal View History

2019-11-20 19:56:22 +01:00
{{- define "main" }}
<section aria-labelledby="nocolor_terms">
<h1 id="nocolor_terms">{{ .Title }}:</h1>
2019-11-20 19:56:22 +01:00
<ul>
2020-12-28 20:12:36 +01:00
{{- range .Data.Terms.ByCount }}
{{ $count := .Count }}
{{- with $.GetPage (lower .Name) }}
2019-11-20 19:56:22 +01:00
<li>
<a href="{{ .RelPermalink }}"{{ if ne .Title .Name }} title="{{ .Title }}"{{ end }}>{{ .Name }}</a>
2019-11-20 19:56:22 +01:00
<span>&#40;{{ $count }}&#41;</span>
</li>
2020-12-28 20:12:36 +01:00
{{- end }}
2019-11-20 19:56:22 +01:00
{{- end }}
</ul>
</section>
2019-11-20 19:56:22 +01:00
{{- end }}