diff options
| author | demo <demo@antix1> | 2026-05-07 16:11:31 -0400 |
|---|---|---|
| committer | demo <demo@antix1> | 2026-05-07 16:11:31 -0400 |
| commit | c2421cb225e7976cb406cb20ae87c7c9c1c8f43b (patch) | |
| tree | 03142fd3991fea508be12278fc27e20fcec916c7 /views/page.gohtml | |
| parent | 526ae6edc7675ccab41f7b854cc277088f02e0ab (diff) | |
feat: format options-links as a column of entries
Diffstat (limited to 'views/page.gohtml')
| -rw-r--r-- | views/page.gohtml | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/views/page.gohtml b/views/page.gohtml index 5eb49ac..80ff95b 100644 --- a/views/page.gohtml +++ b/views/page.gohtml @@ -5,7 +5,9 @@ <p>{{ . }}</p> {{ end }} - {{ range .Options }} - <a href="/{{ .Arc }}">{{ .Text }}</a> - {{ end }} + <div class="options"> + {{ range .Options }} + <a href="/{{ .Arc }}">{{ .Text }}</a> + {{ end }} + </div> {{ end }} |
