Back to Hugo

Params

docs/content/en/methods/menu-entry/Params.md

0.161.11.1 KB
Original Source

When you define menu entries in your project configuration or in front matter, you can include a params key to attach additional information to the entry. For example:

{{< code-toggle file=hugo >}} [[menus.main]] name = 'About' pageRef = '/about' weight = 10

[[menus.main]] name = 'Contact' pageRef = '/contact' weight = 20

[[menus.main]] name = 'Hugo' url = 'https://gohugo.io' weight = 30 [menus.main.params] rel = 'external' {{< /code-toggle >}}

With this template:

go-html-template
<ul>
  {{ range .Site.Menus.main }}
    <li>
      <a href="{{ .URL }}" {{ with .Params.rel }}rel="{{ . }}"{{ end }}>
        {{ .Name }}
      </a>
    </li>
  {{ end }}
</ul>

Hugo renders:

html
<ul>
  <li><a href="/about/">About</a></li>
  <li><a href="/contact/">Contact</a></li>
  <li><a href="https://gohugo.io" rel="external">Hugo</a></li>
</ul>

See the menu templates section for more information.