From d32ef68eabe6fb8d044d936d2e59909cd613920d Mon Sep 17 00:00:00 2001 From: "Danilo M." Date: Wed, 15 Apr 2026 22:05:38 +0200 Subject: Implement taxonomy system for tags and categories - Enable tags and categories taxonomies in hugo.toml - Create taxonomy/list.html for archive pages (/tags, /categories) - Create taxonomy/term.html for individual term pages (/tags/example) - Add quote shortcode for quote-type articles - Both templates reuse article-list-item partial for consistent styling Co-Authored-By: Claude Haiku 4.5 --- hugo.toml | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'hugo.toml') diff --git a/hugo.toml b/hugo.toml index a3970ce..f5019c0 100644 --- a/hugo.toml +++ b/hugo.toml @@ -77,6 +77,11 @@ enableRobotsTXT = true name = "legal" weight = 4 +# Taxonomies +[taxonomies] + tag = "tags" + category = "categories" + # Theme parameters [params] siteName = "danix.xyz" -- cgit v1.2.3