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

Alexander Bilz
21.48.2020 6ddf3af7b143473e5c41a100ab146fef80dd453f
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 }}
        <li>
        <a class="theme-switch" title="Switch Theme">
            <i class="fa fa-adjust fa-fw" aria-hidden="true"></i>
        </a>
        </li>
    </div>
</div>