hugo-theme-next/layouts/partials/menus.html

12 lines
459 B
HTML
Raw Normal View History

<ul class="main-menu menu">
2022-05-12 11:04:28 +08:00
{{- $curP := . }}
{{- range .Site.Menus.main }}
{{ $active := or ($curP.IsMenuCurrent "main" .) ($curP.HasMenuCurrent "main" .) }}
{{ $active = or $active (eq .URL "/")}}
<li class="menu-item menu-item-{{ .Identifier }}">
<a href="{{ .URL }}" class="hvr-icon-pulse{{if $active }} menu-item-active{{ end }}" rel="section">
<i class="fa fa-{{ .Pre }} hvr-icon"></i>{{- .Name }}
</a>
</li>
2022-05-12 11:04:28 +08:00
{{- end }}
</ul>