0x221e/layouts/partials/header.html

23 lines
711 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<header class="headerWrapper">
<div class="header">
<div>
<a href="{{ .Site.BaseURL }}">
<span class="terminal"> 0x221E</span>
</a>
</div>
<input class="side-menu" type="checkbox" id="side-menu"/>
<label class="hamb" for="side-menu"><span class="hamb-line"></span></label>
<nav class="headerLinks">
<ul>
{{ range .Site.Menus.header }}
<li>
<a href="{{ .URL | absURL }}" title="{{ .Title }}" >
~/{{- .Name -}}
</a>
</li>
{{ end }}
</ul>
</nav>
</div>
</header>