Using Hugo After 2 Years!

I’m using hugo after 2 years, and so much has changed. I see that kind in front matter is no longer supported! I want to use it to define it as a term, because I don’t want to make folders for each category or tag.

If the folder is necessary, can you tell me how to integrate this in config.yml of Decap CMS (Netlify).

https://gohugo.io/content-management/front-matter/#parameters

---
title: Example
params:
  kind: something
---
1 Like

Nope, using this params, generate “page” in {{.Kind}}.

---
title: Anything
date: 2025-03-09T13:22:48+05:00
draft: false
params:
  kind: term
---

I want it to consider it as a term.

Sorry, I misunderstood your intent.

You can’t do what you want to do.

You can only explicitly set the page kind when creating pages with a content adapter.

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