erynwells.me/layouts/partials/header.html

23 lines
812 B
HTML
Raw Normal View History

<header class="header">
2021-12-26 13:05:27 -07:00
<h1><a class="site-name" href="{{ `` | absURL }}">Eryn Wells</a></h1>
2021-12-26 13:05:27 -07:00
{{ $url := .RelPermalink }}
{{ with site.Menus.main }}
<nav class="menu">
2021-12-26 13:05:27 -07:00
<menu>
{{ range . }}
2021-12-26 13:05:27 -07:00
<li><a class="{{ if eq .URL $url }}active{{ end }}" href="{{ .URL }}"><span>{{ .Name }}</span></a></li>
{{ end }}
2021-12-26 13:05:27 -07:00
</menu>
</nav>
2021-12-26 13:05:27 -07:00
{{ end }}
<nav class="social">
2021-12-26 13:05:27 -07:00
<menu>
<li><a style="--url: url(./twitter.svg)" href="https://twitter.com/erynofwales" target="_blank"><span>tw</span></a></li>
<li><a style="--url: url(./github.svg)" href="https://github.com/erynofwales" target="_blank"><span>gh</span></a></li>
<li><a style="--url: url(./instagram.svg)" href="https://instagram.com/erynofwales" target="_blank"><span>ig</span></a></li>
</menu>
</nav>
</header>