2024-06-04 05:15:34 -04:00
|
|
|
<div class="p-4 min-h-[40.27px] flex flex-row w-full justify-between bg-black">
|
2024-07-13 17:05:54 -04:00
|
|
|
<a href="/"><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-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>
|