nextDESIGN/layouts/partials/header.html

15 lines
370 B
HTML
Raw Normal View History

2020-05-15 20:17:59 +02:00
<header>
<a id="title" href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>
<label for="show-menu" class="show-menu">Menu</label>
<input type="checkbox" id="show-menu" role="button">
<nav>
<ul>
{{ range .Site.Menus.main }}
<li>
<a href="{{ .URL }}">{{ .Name }}</a>
</li>
{{ end }}
</ul>
</nav>
</header>