hugo-theme-anubis2/layouts/_default/terms.html
2021-12-27 20:17:40 +03:00

19 lines
502 B
HTML

{{ define "main" }}
<div class="index-content">
{{ .Content }}
</div>
<h1>{{ i18n .Title }}</h1>
<ul class="terms">
{{ range .Data.Terms }}
{{ $postsNum := len (where .Pages "Params.hidden" "!=" true) }}
{{ if gt $postsNum 0 }}
<li>
<a href="{{ .Page.RelPermalink }}">{{ .Page.Title }}</a>
({{ $postsNum }})
</li>
{{ end}}
{{ end }}
</ul>
{{ end }}