gallowelds.com/themes/gallo/layouts/partials/nav.html
brooke 8f0b8fe5dd
All checks were successful
Hugo / build (push) Successful in 9s
lazy loading
2024-07-15 14:58:34 -04:00

20 lines
775 B
HTML

<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="/"
><img
class="w-44 h-[40.2667px]"
alt="{{ .Site.Params.logoAlt }}"
src="{{ .Site.Params.logo }}"
loading="lazy"
/></a>
<nav class="place-self-center h-8 flex justify-end gap-2 text-white pr-6">
{{ range .Site.Menus.main }}
<a
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"
href="{{ .URL }}"
aria-label="{{ .Identifier }}"
>
{{ $text := print .Name | safeHTML }} {{ $text }}
</a>
{{ end }}
</nav>
</div>