website/layouts/partials/footer.html
2024-05-31 11:39:23 +02:00

92 lines
2 KiB
HTML

<footer
id="footer"
class="footer">
<div class="footer-cover-back"></div>
<div class="footer-cover"></div>
<div class="footer-border">
<span class="footer-border-item"></span>
<span class="footer-border-item"></span>
<span class="footer-border-item"></span>
</div>
<div class="footer-container container mx-auto">
<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>
<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">
{{ $title := .Title }}
{{ with (index site.Params .Identifier) }}
{{ if isset . "title" }}
{{ $title = .Title }}
{{ else }}
{{ $title = . }}
{{ end }}
{{ end }}
{{ $title }}
</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">
{{ $title := .Title }}
{{ with (index site.Params .Identifier) }}
{{ if isset . "title" }}
{{ $title = .Title }}
{{ else }}
{{ $title = . }}
{{ end }}
{{ end }}
{{ $title }}
</a>
{{ end }}
</div>
</div>
</div>
<div class="flex justify-between footer-footer">
<div class="footer-socials">
{{ range .Site.Params.social }}
<a
href="{{ .url }}"
title="{{ .title }}"
class="footer-socials-item link">
{{ partial "svg" .id }}
</a>
{{ end }}
</div>
{{ partial "locales-list.html" }}
</div>
</div>
</div>
</div>