This repository has been archived on 2024-09-02. You can view files and clone it, but cannot push or open issues or pull requests.
hugo-theme-nocolor/layouts/_default/terms.html

17 lines
379 B
HTML
Raw Normal View History

2019-11-20 19:56:22 +01:00
{{- define "main" }}
<div>
<p>{{ .Title }}:</p>
<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>
2020-12-28 20:12:36 +01:00
<a href="{{ .RelPermalink }}"{{ if .Title }} 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>
</div>
{{- end }}