Welcome to mirror list, hosted at ThFree Co, Russian Federation.

navbar-menu.html « menu « navbar « partials « layouts - github.com/zzossig/hugo-theme-zdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13d65172e1c5019492ff37c08d056decb3cf5a77 (plain)
1
2
3
4
5
6
7
8
9
10
{{ $current := . }}
{{ range .Site.Menus.main }}
  {{ $active := or ($current.IsMenuCurrent "main" .) ($current.HasMenuCurrent "main" .) }}
  {{ $active = or $active (eq .Name $current.Title) }}
  {{ $active = or $active (eq (lower .URL) (lower $current.Title)) }}
  {{ $active = or $active (eq (lower .URL) (lower $current.Type)) }}
  <li class="navbar__menu--item {{ if $active }}active{{ end }}">
    <a href="{{ .URL | relLangURL | safeURL }}">{{ safeHTML .Name }}</a>
  </li>
{{ end }}