rfid/themes/hugo-whisper-theme/layouts/partials/main-menu-mobile.html

12 lines
336 B
HTML
Raw Normal View History

2021-10-01 12:32:43 +00:00
<div id="main-menu-mobile" class="main-menu-mobile">
<ul>
{{ $currentPage := . }}
{{ range .Site.Menus.main }}
<li class="menu-item-{{ .Name | lower }}{{ if $currentPage.IsMenuCurrent "main" . }} active{{ end }}">
<a href="{{ .URL }}">
<span>{{ .Name }}</span>
</a>
</li>
{{end}}
</ul>
</div>