Is there a way to have a menu defined purely in the config file?
In my config.toml file I have:
[[menu.main_en]]
identifier = "about"
name = "about hugo"
pre = "<i class='fa fa-heart'></i>"
url = "/about/"
weight = -110
However, I wasn’t able to render menu using {{ range .Site.Menus.main_en -}} until I added some page to this menu via frontmatter. Is this a correct behavior?