hugo-theme-minima/layouts/partials/header.html

12 lines
252 B
HTML
Raw Normal View History

2021-07-18 10:34:01 +02:00
<header>
<h1 class="row gap-1">
<div id="theme-switcher" class="btn lg-1"></div>
{{ .Site.Title }}
</h1>
<nav class="row gap-1">
{{ range .Site.Menus.main }}
<a href="{{ .URL }}">{{ .Name }}</a>
{{ end }}
</nav>
<hr>
</header>