2025-11-05 04:28:29 +01:00
|
|
|
<footer class="relative py-6 mt-6">
|
|
|
|
|
<div class="absolute backdrop-blur-xs bottom-0 h-full w-screen left-[50%] right-[50%] ml-[-50vw] mr-[-50vw] -z-1"></div>
|
|
|
|
|
<div class="container mx-auto px-4 flex flex-col md:flex-row justify-between items-center opacity-80">
|
|
|
|
|
<div class="mb-4 md:mb-0">
|
|
|
|
|
<h1 class="text-xl font-serif font-bold">{{ .Site.Title }}</h1>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="flex flex-col md:flex-row space-y-2 md:space-y-0 md:space-x-6 mb-4 md:mb-0 text-center">
|
|
|
|
|
{{ $footerMenu := .Site.Data.footer.links }}
|
|
|
|
|
{{ range $footerMenu }}
|
|
|
|
|
<a href="{{ .url }}" {{ if strings.HasPrefix .url "http" }}target="_blank"{{ end }} class="hover:drop-shadow-pink-400 hover:drop-shadow-[0_0_6px]">
|
|
|
|
|
{{ .name | safeHTML }}
|
|
|
|
|
</a>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="text-center mt-4 opacity-50">
|
|
|
|
|
© {{ now.Format "2006" }} {{ .Site.Title }}. All rights reserved.
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</footer>
|