From 4b68cf11cfc2790e78de6512f4589af1ccecf0b0 Mon Sep 17 00:00:00 2001 From: Christian Gick Date: Mon, 6 Apr 2026 08:19:41 +0300 Subject: [PATCH] add tag cloud layout for /tags/ page New terms.html template renders tags as pills with article counts instead of the generic list view with dates and read-more links. Co-Authored-By: Claude Opus 4.6 (1M context) --- layouts/_default/terms.html | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 layouts/_default/terms.html diff --git a/layouts/_default/terms.html b/layouts/_default/terms.html new file mode 100644 index 0000000..cbcc5c7 --- /dev/null +++ b/layouts/_default/terms.html @@ -0,0 +1,15 @@ +{{ define "main" }} +
+

+ {{ .Title }} +

+
+ {{ range .Pages }} + + {{ .Title }} + {{ len .Pages }} + + {{ end }} +
+
+{{ end }}