Some changes, path specific data

This commit is contained in:
Simon Martens
2025-02-18 18:39:30 +01:00
parent 0f32f38b5e
commit 3be64bd10d
19 changed files with 237 additions and 147 deletions

View File

@@ -0,0 +1,13 @@
{{ $model := . }}
{{ if $model.letters }}
<div class="alphabet">
{{ range $id, $r := .letters }}
<a
href="?letter={{ $r }}"
{{ if eq $model.active $r }}aria-current="page"{{ end }}
>{{ $r }}</a
>
{{ end }}
</div>
{{ end }}