16 lines
460 B
HTML
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 }} |