summaryrefslogtreecommitdiffstats
path: root/layouts/_partials/header.html
blob: 872c20712dd08209688c6eabb8f5a4f18011f0da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="header-container">
  <a href="/" class="site-title">{{ .Site.Params.author }}</a>
  <div class="header-controls">
    <nav>
      <ul>
        {{ range .Site.Menus.main }}
          <li>
            <a href="{{ .URL }}" {{ if (in $.RelPermalink .URL) }}class="active"{{ end }}>
              {{ .Name }}
            </a>
          </li>
        {{ end }}
      </ul>
    </nav>
    <button id="theme-toggle-btn" class="theme-toggle" aria-label="Toggle theme">🌙 dark</button>
  </div>
</div>