summaryrefslogtreecommitdiffstats
path: root/layouts/_partials/header.html
blob: 1f8efb87d4a5e08e96fdaf2e6544610c4be66e37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<nav class="nav-header" role="navigation" aria-label="Main navigation">
  <button class="hamburger" id="hamburger-btn" aria-label="Toggle menu" aria-expanded="false">
    <span></span>
    <span></span>
    <span></span>
  </button>

  <div class="menu-overlay" id="menu-overlay">
    <div class="menu-items">
      <a href="/" class="menu-logo">{{ .Site.Params.author }}</a>

      <ul class="menu-links">
        {{ range .Site.Menus.main }}
          <li>
            <a href="{{ .URL }}" {{ if (in $.RelPermalink .URL) }}aria-current="page"{{ end }}>
              {{ .Name }}
            </a>
          </li>
        {{ end }}
      </ul>

      <div class="menu-footer">
        <button class="theme-switch" id="theme-switch" aria-label="Toggle theme">
          <span class="theme-switch-dot"></span>
        </button>
      </div>
    </div>
  </div>
</nav>