Hey, so I want to use a different dir for posts instead of /content/post/. I’m not sure if it’s related to the theme I’m using (hugo-uno) or Hugo itself, but when on the blog, I can’t see the posts under that other dir. Only if I create them under /content/post/, they appear. Is there any place/option where I can change that?
Hugo derives the content section/type from the directory under content/
. If you want to create post
content in a different directory, add type = "post"
to the content front matter.
Thanks, just found that in the docs as well, my bad.