I can't list a taxonomy

Hello
i wrote some posts in content\blog\with this front matter

---
title: "Mon Premier Article"
date: 2023-08-08T22:42:03+02:00
draft: false
images: ["/images/blog/enfantDuRetro.jpg"]
categories: ["Blogging", "test", "cool"]
genres: ["techno", "soud-design"]
---

and i have 2 times the sames templates in :
layouts\categories\taxonomy.html
layouts\categories\terms.html
and
layouts\genres\taxonomy.html
layouts\genres\terms.html

if i go on the url
http://localhost:59058/categories/ is okay i see the list of my categories
but if i go on
http://localhost:59058/genres i see a error page not found

Do you know why ?
You can check my code on github

Hi

It looks like you don’t have declare genres as a taxonomy, while categories is a default one.
You can have a look at Taxonomies | Hugo (gohugo.io)

Thanks !!! is done i added in my config.toml

[taxonomies]
  category = 'categories'
  tag = 'tags'
  genre = 'genres'

This topic was automatically closed 2 days after the last reply. New replies are no longer allowed.