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

navigation.html « partials « layouts - github.com/humrochagf/colordrop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 86e9726636bef5e9dca78f23d9abd22248524bdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<nav>
  <div class="container">
    <div class="main-navigation">
      {{ $currentPage := . }}
      {{ range .Site.Menus.main }}
        <a href="{{ .URL | absLangURL }}" class="{{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}">
          {{ .Name }}
        </a>
      {{ end }}
    </div>
  </div>
</nav>