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

10 lines
264 B
HTML
Raw Normal View History

2024-09-01 14:27:23 +00:00
{{- 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 }}"><code>{{ .Page.Title }}</code></a> {{ .Count }}</div>
{{ end }}
</div>
{{- end -}}