vac.dev-experimental-old/_includes/footer.html

104 lines
2.9 KiB
HTML
Raw Normal View History

2021-08-03 15:50:00 +00:00
<footer class="footer bg-black flex justify-center">
<div
2021-08-04 09:10:51 +00: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 15:50:00 +00:00
>
2021-08-04 09:10:51 +00:00
<div class="logo mr-10 lg:mr-20">
2021-08-03 15:50:00 +00:00
<a href="{{site.url}}{{ site.baseurl }}"
2021-08-04 09:10:51 +00:00
><img
src="{{ '/assets/img/logo.png' | relative_url }}"
alt="Vac logo"
class="w-9 h-11"
2021-08-03 15:50:00 +00:00
/></a>
</div>
<p
class="
hidden
ml:inline-block
w-52
text-base text-white
opacity-75
2021-08-04 09:10:51 +00:00
lm:mr-32
2021-08-03 15:50:00 +00:00
"
>
VAC researches peer-to-peer, private, censorship resistant communication
</p>
2021-08-04 09:10:51 +00:00
<div class="flex flex-col sm:flex-row xm:justify-between">
2021-08-03 15:50:00 +00: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>
<ul class="">
2021-08-04 15:48:52 +00:00
{% for nav in site.data.footer-research %} {% include
nav-item.html %} {% endfor %}
2021-08-03 15:50:00 +00: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>
<ul class="">
2021-08-04 15:48:52 +00:00
{% for nav in site.data.footer-socials %} {% include nav-item.html
%} {% endfor %}
2021-08-03 15:50:00 +00: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>
<ul class="">
2021-08-04 15:48:52 +00:00
{% for nav in site.data.footer-projects %} {% include
nav-item.html %} {% endfor %}
2021-08-03 15:50:00 +00:00
</ul>
</div>
</div>
</nav>
2021-08-04 09:10:51 +00:00
<div class="flex flex-col w-52">
2021-08-03 15:50:00 +00:00
<h3 class="text-base text-white mb-5">Signup for updates</h3>
2021-08-04 10:26:31 +00:00
<form action="" class="footer__form">
2021-08-03 15:50:00 +00:00
<div class="flex items-center w-full">
<input
class="
text-xs text-white
w-full
bg-black
border-b border-white
mr-2
focus:outline-none
2021-08-04 10:26:31 +00:00
placeholder-white placeholder-opacity-50
2021-08-03 15:50:00 +00:00
"
type="email"
placeholder="your email"
2021-08-04 10:58:27 +00:00
required
2021-08-03 15:50:00 +00:00
/>
<button
class="
2021-08-05 09:44:30 +00:00
h-10
w-10
bg-arrowWhite bg-auto bg-no-repeat bg-left
2021-08-04 10:58:27 +00:00
focus:outline-none
hover:opacity-50
2021-08-03 15:50:00 +00:00
"
type="submit"
></button>
</div>
</form>
2021-08-04 10:26:31 +00:00
<p
class="footer__confirm text-base italic text-white opacity-75 hidden"
>
You signed up! Check your e-mail
</p>
2021-08-03 15:50:00 +00:00
</div>
</div>
</div>
</footer>