26 lines
885 B
HTML
26 lines
885 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="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" . }}
|
|
</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 Hugo, designed by
|
|
<a target="_blank" href="https://myco.systems">MycoSystems</a>
|
|
</p>
|
|
</div>
|
|
</div>
|