mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-14 20:37:55 -05:00
34 lines
889 B
Markdown
34 lines
889 B
Markdown
|
---
|
||
|
title: .IsMenuCurrent
|
||
|
description: Reports whether the given page object matches the page object associated with the given menu entry in the given menu.
|
||
|
categories: [functions]
|
||
|
keywords: []
|
||
|
menu:
|
||
|
docs:
|
||
|
parent: functions
|
||
|
function:
|
||
|
aliases: []
|
||
|
returnType: bool
|
||
|
signatures: [PAGE.IsMenuCurrent MENU MENUENTRY]
|
||
|
relatedFunctions:
|
||
|
- .HasMenuCurrent
|
||
|
- .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.
|
||
|
|
||
|
[menu templates]: /templates/menu-templates/#example
|