gallowelds.com/themes/gallo/layouts/partials/nav.html

21 lines
775 B
HTML
Raw Normal View History

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 }}"
2024-07-15 14:58:34 -04:00
loading="lazy"
2024-07-13 17:37:01 -04:00
/></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 }}"
2024-07-13 17:20:42 -04:00
aria-label="{{ .Identifier }}"
>
2024-05-22 21:37:08 -04:00
{{ $text := print .Name | safeHTML }} {{ $text }}
</a>
{{ end }}
2024-05-22 21:37:08 -04:00
</nav>
</div>