diff options
| author | Danilo M. <danix@danix.xyz> | 2026-04-15 22:05:38 +0200 |
|---|---|---|
| committer | Danilo M. <danix@danix.xyz> | 2026-04-15 22:05:38 +0200 |
| commit | d32ef68eabe6fb8d044d936d2e59909cd613920d (patch) | |
| tree | c7f7794fd2d97821ba944bc9856da73e75a51f70 /hugo.toml | |
| parent | 134d00e5bd0f15113e256c8446931d830985fbf4 (diff) | |
| download | danixxyz-d32ef68eabe6fb8d044d936d2e59909cd613920d.tar.gz danixxyz-d32ef68eabe6fb8d044d936d2e59909cd613920d.zip | |
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 <noreply@anthropic.com>
Diffstat (limited to 'hugo.toml')
| -rw-r--r-- | hugo.toml | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -77,6 +77,11 @@ enableRobotsTXT = true name = "legal" weight = 4 +# Taxonomies +[taxonomies] + tag = "tags" + category = "categories" + # Theme parameters [params] siteName = "danix.xyz" |
