109 lines
3.0 KiB
HTML
109 lines
3.0 KiB
HTML
<footer class="footer bg-black flex flex-shrink-0 justify-center">
|
|
<div
|
|
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
|
|
"
|
|
>
|
|
<div class="logo mr-10 sm:mr-0 sm:w-2/12 lg:w-3/12">
|
|
<a href="/"
|
|
><img
|
|
src="{{ '/assets/img/logo.png' | relative_url }}"
|
|
alt="Vac logo"
|
|
class="w-9 h-11"
|
|
/></a>
|
|
</div>
|
|
|
|
<div
|
|
class="flex flex-col xm:flex-row xm:justify-between sm:w-10/12 lg:w-9/12"
|
|
>
|
|
<p
|
|
class="
|
|
hidden
|
|
ml:inline-block ml:mr-10
|
|
w-52
|
|
text-base text-white
|
|
opacity-75
|
|
lm:mr-32
|
|
"
|
|
>
|
|
VAC researches peer-to-peer, private, censorship resistant communication
|
|
</p>
|
|
<nav class="flex max-w-xs mr-0 xm:mr-5 l:mr-32 mb-5 sm:mb-0">
|
|
<div class="flex">
|
|
<div class="flex flex-col mr-5 sm:mr-10 sl:mr-14">
|
|
<p class="text-base text-white mb-5 lg:mb-4">Research</p>
|
|
<ul>
|
|
{% for nav in site.data.footer-research %} {% include
|
|
nav-item-footer.html %} {% endfor %}
|
|
</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>
|
|
{% for nav in site.data.footer-socials %} {% include
|
|
nav-item-footer.html %} {% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{%- comment -%}
|
|
<div>
|
|
<div class="flex flex-col sl:mr-5">
|
|
<p class="text-base text-white mb-5 lg:mb-4">Projects</p>
|
|
<ul>
|
|
{% for nav in site.data.footer-projects %} {% include
|
|
nav-item-footer.html %} {% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{%- endcomment -%}
|
|
</nav>
|
|
|
|
<div class="flex flex-col w-52">
|
|
<h3 class="text-base text-white mb-5">Signup for updates</h3>
|
|
<form action="" class="footer__form">
|
|
<div class="flex items-center w-full">
|
|
<input
|
|
class="
|
|
text-xs text-white
|
|
w-full
|
|
bg-black
|
|
border-b border-white
|
|
rounded-none
|
|
mr-2
|
|
focus:outline-none
|
|
placeholder-white placeholder-opacity-50
|
|
"
|
|
type="email"
|
|
placeholder="your email"
|
|
required
|
|
/>
|
|
<button
|
|
class="
|
|
h-10
|
|
w-10
|
|
bg-arrowWhite bg-auto bg-no-repeat bg-left
|
|
focus:outline-none
|
|
hover:opacity-50
|
|
"
|
|
type="submit"
|
|
></button>
|
|
</div>
|
|
</form>
|
|
<p
|
|
class="footer__confirm text-base italic text-white opacity-75 hidden"
|
|
>
|
|
You signed up! Check your e-mail
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|