website/layouts/partials/footer.html

77 lines
1.6 KiB
HTML
Raw Normal View History

2024-05-21 13:52:18 +02:00
<footer
id="footer"
class="footer">
2023-01-23 10:07:18 +01:00
<div class="footer-cover-back"></div>
<div class="footer-cover"></div>
<div class="footer-border">
2024-05-21 13:52:18 +02:00
<span class="footer-border-item"></span>
<span class="footer-border-item"></span>
<span class="footer-border-item"></span>
2023-01-23 10:07:18 +01:00
</div>
<div class="footer-container container mx-auto">
2024-05-21 13:52:18 +02:00
<div>
<div class="flex flex-wrap">
<div class="w-full md:w-1/2">
<div class="footer-title-container">
<a
class="link footer-logo"
href="/"
>
{{ $image := resources.Get "images/logo.png" }}
<img
src="{{ $image.RelPermalink }}"
class="logo">
</a>
<div>
<div class="footer-title">
We Robot
</div>
2023-01-23 10:07:18 +01:00
2024-05-21 13:52:18 +02:00
<div class="footer-description">
{{ .Site.Params.description }}
</div>
</div>
</div>
</div>
<div class="w-full md:w-1/4">
<div class="footer-links">
{{ range .Site.Menus.footer_left }}
<a
href="{{ .URL }}"
class="link">
{{ .Name}}
</a>
{{ end }}
</div>
</div>
<div class="w-full md:w-1/4">
<div class="footer-links">
{{ range .Site.Menus.footer_right }}
<a
href="{{ .URL }}"
class="link">
{{ .Name }}
</a>
{{ end }}
</div>
</div>
</div>
2023-01-23 10:07:18 +01:00
2024-05-21 13:52:18 +02:00
<div class="flex justify-between footer-footer">
<div class="footer-socials">
{{ range .Site.Params.social }}
<a
2024-05-21 13:57:22 +02:00
href="{{ .url }}"
title="{{ .title }}"
2024-05-21 13:52:18 +02:00
class="footer-socials-item link">
{{ partial "svg" .id }}
</a>
{{ end }}
</div>
{{ partial "locales-list.html" }}
</div>
</div>
</div>
2023-01-23 10:07:18 +01:00
</div>