105 lines
2.9 KiB
HTML
Raw Normal View History

2021-08-09 11:11:02 +02:00
<footer class="footer bg-black flex flex-shrink-0 justify-center">
2021-08-03 17:50:00 +02:00
<div
2021-08-04 11:10:51 +02:00
class="
container
max-w-screen-xl
flex
sl:justify-between
lm:justify-start
p-5
pb-10
md:px-12 md:pt-5
lg:pt-10
"
2021-08-03 17:50:00 +02:00
>
2021-08-04 11:10:51 +02:00
<div class="logo mr-10 lg:mr-20">
2021-08-10 12:31:38 +02:00
<a href="/"
2021-08-04 11:10:51 +02:00
><img
src="{{ '/assets/img/logo.png' | relative_url }}"
alt="Vac logo"
class="w-9 h-11"
2021-08-03 17:50:00 +02:00
/></a>
</div>
<p
class="
hidden
ml:inline-block
w-52
text-base text-white
opacity-75
2021-08-04 11:10:51 +02:00
lm:mr-32
2021-08-03 17:50:00 +02:00
"
>
VAC researches peer-to-peer, private, censorship resistant communication
</p>
2021-08-04 11:10:51 +02:00
<div class="flex flex-col sm:flex-row xm:justify-between">
2021-08-03 17:50:00 +02:00
<nav class="flex max-w-xs mr-0 xm:mr-5 l:mr-32 mb-5 sm:mb-0">
<div class="flex flex-col xxs:flex-row">
<div class="flex flex-col mr-5 sl:mr-14">
<p class="text-base text-white mb-5 lg:mb-4">Research</p>
2021-08-05 17:45:13 +02:00
<ul>
2021-08-04 17:48:52 +02:00
{% for nav in site.data.footer-research %} {% include
2021-08-05 18:00:06 +02:00
nav-item-footer.html %} {% endfor %}
2021-08-03 17:50:00 +02:00
</ul>
</div>
<div class="flex flex-col sl:mr-14">
<p class="text-base text-white mb-5 lg:mb-4 mr-5">Socials</p>
2021-08-05 17:45:13 +02:00
<ul>
2021-08-05 18:00:06 +02:00
{% for nav in site.data.footer-socials %} {% include
nav-item-footer.html %} {% endfor %}
2021-08-03 17:50:00 +02:00
</ul>
</div>
</div>
<div>
<div class="flex flex-col sl:mr-5">
<p class="text-base text-white mb-5 lg:mb-4">Projects</p>
2021-08-05 17:45:13 +02:00
<ul>
2021-08-04 17:48:52 +02:00
{% for nav in site.data.footer-projects %} {% include
2021-08-05 18:00:06 +02:00
nav-item-footer.html %} {% endfor %}
2021-08-03 17:50:00 +02:00
</ul>
</div>
</div>
</nav>
2021-08-04 11:10:51 +02:00
<div class="flex flex-col w-52">
2021-08-03 17:50:00 +02:00
<h3 class="text-base text-white mb-5">Signup for updates</h3>
2021-08-04 12:26:31 +02:00
<form action="" class="footer__form">
2021-08-03 17:50:00 +02:00
<div class="flex items-center w-full">
<input
class="
text-xs text-white
w-full
bg-black
border-b border-white
2021-08-09 16:47:45 +02:00
rounded-none
2021-08-03 17:50:00 +02:00
mr-2
focus:outline-none
2021-08-04 12:26:31 +02:00
placeholder-white placeholder-opacity-50
2021-08-03 17:50:00 +02:00
"
type="email"
placeholder="your email"
2021-08-04 12:58:27 +02:00
required
2021-08-03 17:50:00 +02:00
/>
<button
class="
2021-08-05 11:44:30 +02:00
h-10
w-10
bg-arrowWhite bg-auto bg-no-repeat bg-left
2021-08-04 12:58:27 +02:00
focus:outline-none
hover:opacity-50
2021-08-03 17:50:00 +02:00
"
type="submit"
></button>
</div>
</form>
2021-08-04 12:26:31 +02:00
<p
class="footer__confirm text-base italic text-white opacity-75 hidden"
>
You signed up! Check your e-mail
</p>
2021-08-03 17:50:00 +02:00
</div>
</div>
</div>
</footer>