Back to Hugo

IsMenuCurrent

docs/content/en/methods/page/IsMenuCurrent.md

0.161.1676 B
Original Source
go-html-template
{{ $currentPage := . }}
{{ range site.Menus.main }}
  {{ if $currentPage.IsMenuCurrent .Menu . }}
    <a class="active" aria-current="page" href="{{ .URL }}">{{ .Name }}</a>
  {{ else if $currentPage.HasMenuCurrent .Menu . }}
    <a class="ancestor" aria-current="true" href="{{ .URL }}">{{ .Name }}</a>
  {{ else }}
    <a href="{{ .URL }}">{{ .Name }}</a>
  {{ end }}
{{ end }}

See menu templates for a complete example.

[!note] When using this method you must either define the menu entry in front matter, or specify a pageRef property when defining the menu entry in your project configuration.