fix(style): single post tags listing

This commit is contained in:
2026-09-13 18:41:08 +02:00
parent 63f29884db
commit d3c4a06c82
+3 -1
View File
@@ -148,11 +148,13 @@
<!-- ── TAGS ─────────────────────────────────────────────────── --> <!-- ── TAGS ─────────────────────────────────────────────────── -->
{{- with .Params.tags -}} {{- with .Params.tags -}}
<footer class="gutter-x border-t border-zinc pt-10 pb-20"> <footer class="gutter-x border-t border-zinc pt-10 pb-20">
<div class="max-w-5xl mx-auto flex flex-wrap gap-3 items-center"> <div class="max-w-5xl mx-auto flex no-wrap gap-3 items-start">
<span class="label text-fog">Tagged:</span> <span class="label text-fog">Tagged:</span>
<span class="flex flex-wrap gap-3">
{{- range . -}} {{- range . -}}
<a href="/tags/{{ . | urlize }}/" class="badge badge-outline"># {{ . }}</a> <a href="/tags/{{ . | urlize }}/" class="badge badge-outline"># {{ . }}</a>
{{- end -}} {{- end -}}
</span>
</div> </div>
</footer> </footer>
{{- end -}} {{- end -}}