rimarima/themes/hugo-liftoff/layouts/_default/terms.html
Adrian Amaglio c09f092db4 init
2023-11-17 10:54:41 +01:00

16 lines
460 B
HTML

{{ define "main" }}
<div class="container">
<section class="page-header--c">
<h1 class="page-header-title">{{ .Title }}</h1>
</section>
<div class="terms">
{{ with .Data.Terms.ByCount }}
{{ range . }}
<a class="term" href="{{ .Page.Permalink }}">{{ .Page.Title }} <sup class="term-count">{{ .Count }}</sup></a>
{{ end }}
{{ else }}
{{ partial "general/fallback-text.html" . }}
{{ end }}
</div>
</div>
{{ end }}