mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
5fd1e74903
``` git subtree add --prefix=docs/ https://github.com/gohugoio/hugoDocs.git master --squash ``` Closes #11925
1,022 B
1,022 B
title | description | categories | keywords | action | aliases | |||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
HasMenuCurrent | Reports whether the given page object matches the page object associated with one of the child menu entries under the given menu entry in the given menu. |
|
|
If the page object associated with the menu entry is a section, this method also returns true
for any descendant of that section.
{{ $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.