gallowelds.com/themes/gallo/layouts/partials/footer.html
2024-05-22 21:37:08 -04:00

37 lines
1.1 KiB
HTML

<div
class="self-end w-full py-6 gap-2 flex-col flex items-center justify-center min-h-12 bg-black text-white"
>
<div class="w-9/12 flex flex-row justify-between">
<div class="flex flex-row gap-8">
{{ range .Site.Menus.main }}
<a class="" href="{{ .URL }}">
{{ $text := print .Name | safeHTML }} {{ $text }}
</a>
{{ end }}
</div>
<div class="flex flex-row gap-2">
{{ partial "social_icons.html" .Params.social }}
</div>
</div>
<div class="h-px bg-slate-700 w-9/12"></div>
<div class="grid grid-cols-2 justify-between w-9/12">
<p class="text-xs text-slate-400">
© {{ now.Format "2006"}} {{ .Site.Params.copyName | markdownify }}
</p>
<p class="justify-self-end text-xs text-slate-400">
Built using
<a
class="hover:decoration-2 underline"
target="_blank"
href="https://gohugo.io"
>Hugo</a
>, designed by
<a
class="hover:decoration-2 underline"
target="_blank"
href="https://myco.systems"
>MycoSystems</a
>
</p>
</div>
</div>