So I wanted to make my nav menus Hugo like. But I don’t know what is wrong with my code that doesn’t render menus from config. So here is My header.html
`
{{ range .Site.Menus.main }}
<a href="{{ .URL }}">{{ .Title }}</a>
{{ end }}
`
And here is my `config.json`
`
“menu”: {
"main": [
{
"name": "Blog",
"url": "/blog/"
},
{
"name": "Blog",
"url": "/blog/"
},
{
"name": "Blog",
"url": "/blog/"
},
{
"name": "Blog",
"url": "/blog/"
},
{
"name": "Blog",
"url": "/blog/"
}
]
}
`
There is no error but nav doesn’t show anything.