2024-01-27 04:48:33 -05:00
|
|
|
---
|
|
|
|
title: IsMenuCurrent
|
2024-08-09 09:17:43 -04:00
|
|
|
description: Reports whether the given Page object matches the Page object associated with the given menu entry in the given menu.
|
2024-01-27 04:48:33 -05:00
|
|
|
categories: []
|
|
|
|
keywords: []
|
|
|
|
action:
|
|
|
|
related:
|
|
|
|
- methods/page/HasMenuCurrent
|
|
|
|
returnType: bool
|
|
|
|
signatures: [PAGE.IsMenuCurrent MENU MENUENTRY]
|
|
|
|
aliases: [/functions/ismenucurrent]
|
|
|
|
---
|
|
|
|
|
|
|
|
```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.
|
|
|
|
|
2024-08-09 09:17:43 -04:00
|
|
|
[menu templates]: /templates/menu/#example
|