Website/themes/liftoff/layouts/_default/terms.html
Martin Gasque 0ba3f3c7c5 Initial commit
Will it deploy one day ?
2024-02-20 08:59:37 +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 }}