Hello everyone, I’ve been trying to get my menu to render properly for quite some time, and I can’t find help from the docs, or the forum search.
hugo env
:
Hugo Static Site Generator v0.59.0/extended darwin/amd64 BuildDate: unknown GOOS="darwin" GOARCH="amd64" GOVERSION="go1.13.3"
theme
: https://github.com/PippoRJ/hugo-refresh
source
: https://github.com/elamje/xsimplify
Directory structure:
What I want: A dropdown menu under .NET-Blazor that includes all of the children, i.e. (ExamplesAndTutorials, GettingStarted, Troubleshooting, & WhyBlazor?)
What happens: The dropdown child only renders as part of the dropdown when I explicitly toggle its showInMenu
; It renders whether toggling true->false, or false->true
Each of those are branch bundles with the following front-matter in _index.md:
---
title: "<Child Name>"
date: 2019-10-28T23:59:30-05:00
draft: true
showInMenu: true
hideLastModified: true
weight: -20
summary: "test"
summaryImage: ""
---
Now, the interesting thing is that they rendered correctly the first few runs of hugo server -D
. However, now they only render when I edit each one’s front-matter and refresh the page, which I have to do one by one to add them to the dropdown.
Changing them to draft: false
does not change behavior.
My config.yaml is the theme default.
Thanks in advance! Sorry if I broke any of the forum styling guides. I’m a new poster here and still have a bit to learn.