hugo-theme-fha/layouts/_default/terms.html

10 lines
293 B
HTML

{{- define "main" -}}
<h1>{{ .Title }}</h1>
<div class="d-flex flex-wrap flex-row">
{{ range .Data.Terms.Alphabetical }}
<div class="w-25 m-1"><a href="{{ .Page.RelPermalink }}" class="text-decoration-none"><code>{{ .Page.Title }}</code></a> {{ .Count }}</div>
{{ end }}
</div>
{{- end -}}