rfid/themes/hugo-whisper-theme/layouts/partials/main-menu-mobile.html
2021-10-01 14:32:43 +02:00

12 lines
336 B
HTML

<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>