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

Alexander Bilz
24.27.2020 e445988e31ace43f9e1174b220bdf98ec0e3d917
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<div class="page-top animated fadeInDown">
    <ul class="nav">
        {{ $url := .RelPermalink }}
        {{ range .Site.Menus.main }}
        {{ $active := eq $url .URL }}
        <li><a {{if $active }}class="current"{{end}} href="{{ .URL }}" title="{{ .Title }}">{{ .Name }}</a></li>
        {{ end }}
    </ul>
    <div class="themeswitcher">
        <a class="theme-switch" title="Switch Theme">
            <i class="fa fa-adjust fa-fw" aria-hidden="true"></i>
        </a>
    </div>
</div>