In my config.toml
I have the following:
[[menu.main]]
name = "Home"
weight = 10
identifier = "home"
url = "/"
[[menu.main]]
name = "Posts"
identifier = "posts"
weight = 20
url = "/posts/"
[[menu.main]]
name = "Tags"
weight = 30
identifier = "tags"
url = "/tags/"
This works fine. I’m using ox-hugo
to set up my blog with emacs org-mode, and yet when I run my posts through Hugo, I end up with a menu at the top which includes the six items:
Home Posts Tags Links Blog_Post_1 Blog_post_2
so for some reason my blog posts are included as menu headers. In my org file the posts are given as sub-items below the main item “Posts”. I’ve been fiddling with this for a while, but I can’t find the magic formula to remove my blog posts from the menu header. I have a feeling it’s something to do with page management, but I’ve got myself right confused over all the different sorts of content management in Hugo.
While experimenting, I’m using the very simple “kiera” theme. Anyway, if there’s any advice, or examples on github I can be pointed to, I’d be very grateful!