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

11 lines
533 B
HTML
Raw Normal View History

2024-05-22 21:37:08 -04:00
<div class="p-4 flex flex-row w-full justify-between bg-black">
<a href="/"><img class="w-44 h-auto" src="{{ .Site.Params.logo }}"></a>
2024-05-23 02:10:31 -04:00
<nav class="place-self-center h-8 flex justify-end gap-4 text-white pr-6">
2024-05-22 21:37:08 -04:00
{{ range .Site.Menus.main }}
<a class="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 }}">
{{ $text := print .Name | safeHTML }} {{ $text }}
</a>
{{ end }}
</nav>
</div>