Each term card on the tags/categories list page now shows a count
badge (top-right) with the number of articles in that term.
Co-Authored-By: Claude Haiku 4.5 <redacted>
<!-- Pinned posts first -->
{{ range (sort $pinned "Date" "desc") }}
- {{ partial "article-list-item.html" . }}
+ <div class="relative">
+ {{ partial "article-list-item.html" . }}
+ <span class="absolute top-4 right-4 px-2 py-0.5 rounded text-xs font-mono bg-surface text-text-dim border border-border/30">
+ {{ .Pages.Len }}
+ </span>
+ </div>
{{ end }}
<!-- Regular posts -->
{{ range (sort $unpinned "Date" "desc") }}
- {{ partial "article-list-item.html" . }}
+ <div class="relative">
+ {{ partial "article-list-item.html" . }}
+ <span class="absolute top-4 right-4 px-2 py-0.5 rounded text-xs font-mono bg-surface text-text-dim border border-border/30">
+ {{ .Pages.Len }}
+ </span>
+ </div>
{{ end }}
<!-- Empty state -->