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

29 lines
863 B
HTML
Raw Normal View History

2024-08-05 13:20:50 -04:00
<div
class="p-4 min-h-[40.27px] flex flex-col sm:flex-row w-full justify-between bg-black"
>
2024-08-05 13:38:43 -04:00
{{ with site.GetPage "_index.md" }}
2024-07-15 11:06:06 -04:00
<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]"
2024-08-05 13:38:43 -04:00
alt="{{ .Params.logoAlt }}"
src="{{ .Params.logo }}"
2024-07-15 14:58:34 -04:00
loading="lazy"
2024-07-13 17:37:01 -04:00
/></a>
2024-08-05 13:38:43 -04:00
<nav
class="place-self-center h-8 flex justify-end gap-4 text-white pr-0 sm:pr-6"
>
{{ range .Site.Menus.main }}
<a
2024-08-05 13:20:50 -04:00
style="white-space: nowrap"
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 }}"
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>
2024-08-05 13:38:43 -04:00
{{ end }}
2024-05-22 21:37:08 -04:00
</div>