diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-16 12:54:14 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-16 12:54:14 +0200 |
| commit | 71f577b171f6208fff7de47c7dad087955aa5fae (patch) | |
| tree | a5bebf376a8f98e2e2f8312ae7a0c6bce39c4a3a /themes/danix-xyz-hacker | |
| parent | 631505e0c403c9e2e4e5687ee121f0d1bd371b8c (diff) | |
| download | danixxyz-fix/taxonomy-layouts.tar.gz danixxyz-fix/taxonomy-layouts.zip | |
feat: i18n singular/plural post count on taxonomy listfix/taxonomy-layouts
Replace hardcoded "Posts: N" with i18n "postCount" key using Hugo's
pluralization support (one/other forms). Renders "1 post" or "N posts"
in English, "1 articolo" or "N articoli" in Italian.
Co-Authored-By: Claude Haiku 4.5 <noreply@anthropic.com>
Diffstat (limited to 'themes/danix-xyz-hacker')
| -rw-r--r-- | themes/danix-xyz-hacker/layouts/taxonomy/list.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/themes/danix-xyz-hacker/layouts/taxonomy/list.html b/themes/danix-xyz-hacker/layouts/taxonomy/list.html index b3ab612..cd4945a 100644 --- a/themes/danix-xyz-hacker/layouts/taxonomy/list.html +++ b/themes/danix-xyz-hacker/layouts/taxonomy/list.html @@ -23,7 +23,7 @@ <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 }} + {{ i18n "postCount" .Pages.Len }} </span> </div> {{ end }} @@ -33,7 +33,7 @@ <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 }} + {{ i18n "postCount" .Pages.Len }} </span> </div> {{ end }} |
