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

14 lines
613 B
HTML
Raw Normal View History

<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>
<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-05-22 21:37:08 -04:00
{{ $text := print .Name | safeHTML }} {{ $text }}
</a>
{{ end }}
2024-05-22 21:37:08 -04:00
</nav>
</div>