1
0
Fork 0
mirnet.org/themes/mir/layouts/partials/footer.html

16 lines
749 B
HTML
Raw Normal View History

2024-09-12 13:41:14 -04:00
<div class="m-4 rounded-lg p-4 min-h-[40.27px] flex flex-row justify-between items-center bg-[#f1f5fc]">
{{ with site.GetPage "_index.md" }}
<div class="w-full flex flex-row justify-between items-center">
<a class="flex justify-center items-center mb-2 sm:mb-0" aria-label="Back to home" href="/">
2024-09-12 15:03:44 -04:00
<img class="sm:block hidden h-[40.2667px]" alt="{{ .Params.logoAlt }}" src="{{ .Params.logo }}" loading="lazy" />
2024-09-12 13:41:14 -04:00
</a>
<div class="flex flex-row gap-2 items-center">
{{ range .Params.social.main }}
2024-09-12 14:36:28 -04:00
<a target="_blank" aria-label="{{ .label }}" href="{{ .url | safeURL }}" class="fill-[#192252] h-5 w-5 flex items-center">
2024-09-12 13:41:14 -04:00
{{ .icon | safeHTML }}
</a>
{{ end }}
</div>
</div>
{{ end }}
2024-09-12 14:36:28 -04:00
</div>