2024-07-15 11:06:06 -04:00
|
|
|
<div class="p-4 min-h-[40.27px] flex flex-col sm:flex-row w-full justify-between bg-black">
|
|
|
|
<a class="justify-center flex mb-2 sm:mb-0" aria-label="Back to home" href="/"
|
2024-07-13 17:37:01 -04:00
|
|
|
><img
|
|
|
|
class="w-44 h-[40.2667px]"
|
|
|
|
alt="{{ .Site.Params.logoAlt }}"
|
|
|
|
src="{{ .Site.Params.logo }}"
|
|
|
|
/></a>
|
2024-05-23 21:46:09 -04:00
|
|
|
<nav class="place-self-center h-8 flex justify-end gap-2 text-white pr-6">
|
2024-06-10 19:31:59 -04:00
|
|
|
{{ range .Site.Menus.main }}
|
2024-05-23 21:08:04 -04:00
|
|
|
<a
|
2024-05-23 21:46:09 -04:00
|
|
|
class="ml-2 underline underline-offset-0 decoration-2 decoration-transparent hover:decoration-white hover:underline-offset-2 ease-in-out duration-300 place-self-center"
|
2024-05-23 21:08:04 -04:00
|
|
|
href="{{ .URL }}"
|
2024-07-13 17:20:42 -04:00
|
|
|
aria-label="{{ .Identifier }}"
|
2024-05-23 21:08:04 -04:00
|
|
|
>
|
2024-05-22 21:37:08 -04:00
|
|
|
{{ $text := print .Name | safeHTML }} {{ $text }}
|
|
|
|
</a>
|
2024-06-10 19:31:59 -04:00
|
|
|
{{ end }}
|
2024-05-22 21:37:08 -04:00
|
|
|
</nav>
|
|
|
|
</div>
|