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

17 lines
438 B
HTML

{{- define "main" }}
<section aria-labelledby="nocolor_terms">
<p id="nocolor_terms">{{ .Title }}:</p>
<ul>
{{- range .Data.Terms.ByCount }}
{{ $count := .Count }}
{{- with $.GetPage (lower .Name) }}
<li>
<a href="{{ .RelPermalink }}"{{ if .Title }} title="{{ .Title }}"{{ end }}>{{ .Name }}</a>
<span>&#40;{{ $count }}&#41;</span>
</li>
{{- end }}
{{- end }}
</ul>
</section>
{{- end }}