2021-08-15 08:41:40 +00:00
|
|
|
<header class="flex justify-between py-6 font-semibold sm:py-10">
|
2021-08-11 05:28:33 +00:00
|
|
|
<div>
|
2021-08-18 02:54:18 +00:00
|
|
|
<a
|
|
|
|
class="hover:underline underline-primary-500 underline-thickness-bold underline-offset-small"
|
|
|
|
rel="me"
|
|
|
|
href="{{ .Site.BaseURL }}"
|
|
|
|
>{{ .Site.Title }}</a
|
|
|
|
>
|
2021-08-11 05:28:33 +00:00
|
|
|
</div>
|
|
|
|
<nav>
|
2021-08-14 03:33:45 +00:00
|
|
|
<ul class="flex flex-col list-none sm:flex-row">
|
2021-08-11 05:28:33 +00:00
|
|
|
{{ range .Site.Menus.main }}
|
2021-08-14 03:33:45 +00:00
|
|
|
<li class="text-right sm:mr-7 sm:last:mr-0">
|
2021-08-18 02:54:18 +00:00
|
|
|
<a
|
|
|
|
class="hover:underline underline-primary-500 underline-thickness-bold underline-offset-small"
|
|
|
|
href="{{ .URL | absURL }}"
|
|
|
|
title="{{ .Title }}"
|
|
|
|
>{{ .Name }}</a
|
|
|
|
>
|
2021-08-11 05:28:33 +00:00
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</header>
|