I’ve spent most of the day trying to get a decent footer menu structure going. So far only the most basic attributes work.
As far as RTFM, looking through Menu Entry Properties | Hugo wasn’t any help with this issue.
in the menu.en.toml I have tables like this:
[[connect]]
name = "Newsletter"
url = "https://frankjonen.substack.com"
rel = "external"
title = "The Smithereenery - On Substack"
weight = 20
target = "_blank"
Yet as soon as I go beyond
{{ range .Site.Menus.connect -}}
<li><a href="{{ .URL }}" title="{{ .Title }}">{{ .Name }}</a></li>
{{ end }}
it blows up in my face. Neither {{ .Rel }} nor {{ .Params.rel }} will render. How am I supposed to get to these values?