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

10 lines
293 B
HTML
Raw Permalink Normal View History

2024-10-14 19:54:59 +00:00
{{- define "main" -}}
2024-09-01 14:27:23 +00:00
2024-10-14 19:54:59 +00:00
<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>
2024-09-01 14:27:23 +00:00
2024-10-14 19:54:59 +00:00
{{- end -}}