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

bkanhu
21.18.2020 e7ac090005e1107b20b75cfc25eb661f23df4dbe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<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 class="theme-switch-wrapper">
            <label class="theme-switch" for="checkbox">
                <input type="checkbox" id="checkbox" />
                <div class="slider round"></div>
          </label>
          
        </div>
    </div>
</div>