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

12 lines
266 B
HTML
Raw Normal View History

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