Hi all,
I wanted to know how I can go about added a dict to a menu range, I wanted to add a class to the following when using {{ partial "menu/site" (dict "class" "foobar" ) }}
<ul>
{{ range .Site.Menus.site }}
<li><a href="{{ .URL }}" class="{{ .class }}">{{ .Title }}</a></li>
{{ end }}
</ul>