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

42 lines
1.1 KiB
HTML
Raw Normal View History

2024-05-22 14:22:07 -04:00
<div
class="self-end w-full py-6 gap-2 flex flex-col items-center justify-center min-h-12 bg-black text-white"
2024-05-22 14:22:07 -04:00
>
2024-05-22 18:10:33 -04:00
<div class="w-9/12 flex flex-row justify-between">
<div class="flex flex-row gap-8">
2024-07-13 17:20:42 -04:00
<a class="text-white hover:text-gray-400" href="/admin"> Admin </a>
2024-05-22 14:22:07 -04:00
</div>
2024-05-23 21:48:53 -04:00
<div class="flex flex-row gap-2">
{{ range .Site.Params.social.main }}
2024-07-13 17:20:42 -04:00
<a
target="_blank"
aria-label="{{ .label }}"
href="{{ .url | safeURL }}"
>
2024-05-23 21:48:53 -04:00
{{ .icon | safeHTML }}
</a>
{{ end }}
2024-05-23 21:48:53 -04:00
</div>
2024-05-22 14:22:07 -04:00
</div>
<div class="h-px bg-gray-700 w-9/12"></div>
2024-05-22 18:10:33 -04:00
<div class="grid grid-cols-2 justify-between w-9/12">
<p class="text-xs text-gray-400">
© {{ now.Format "2006" }} {{ .Site.Params.copyName | markdownify }}
2024-05-22 18:10:33 -04:00
</p>
<p class="text-xs text-right text-gray-400">
2024-05-22 21:37:08 -04:00
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
>
2024-05-22 18:10:33 -04:00
</p>
2024-05-22 14:22:07 -04:00
</div>
</div>