gallowelds.com/themes/gallo/layouts/partials/footer.html
2024-05-22 14:22:07 -04:00

18 lines
543 B
HTML

<div
class="self-end w-full py-6 gap-2 flex-col flex items-center justify-center min-h-12 bg-slate-950 text-white"
>
<div class="px-8 w-1/2 flex flex-row justify-between">
<div>
{{ range .Site.Menus.main }}
<a class="" href="{{ .URL }}">
{{ $text := print .Name | safeHTML }} {{ $text }}
</a>
{{ end }}
</div>
<div>Social Media</div>
</div>
<div class="h-px bg-slate-700 w-9/12"></div>
<div>
<p>© {{ now.Format "2006"}} {{ .Site.Params.authorName | markdownify }}</p>
</div>
</div>