I would like to access the name of a menu within a template, but the following does not work:
<ul>
<li><strong>{{ .Site.Menus.mymenu.Name }}</strong></li> <!-- <== doesn't work -->
{{ range .Site.Menus.mymenu }}
<li><a href="{{ .URL }}">{{ .Name }}</a></li>
{{ end }}
</ul>
Can anybody help me? I want to avoid hardcoding of the name, because I want to translate it.