mirror of https://github.com/lxndrblz/anatole.git

Alexander Bilz
21.33.2020 b450977481d38347502fc859468af0c06d5f0917
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="page-top animated fadeInDown">
    <div class="nav">
        {{ $currentPage := . }}
        {{ range .Site.Menus.main }}
        <li><a {{if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }}class="current"{{end}} href="{{ .URL }}" title="{{ .Title }}">{{ .Name }}</a></li>
 
        {{ end }}
    </div>
    <div class="themeswitcher">
        <a class="theme-switch" title="Switch Theme">
            <i class="fa fa-adjust fa-fw fa-2x" aria-hidden="true"></i>
        </a>
    </div>
</div>