mirror of
https://github.com/boostorg/website-v2.git
synced 2026-02-27 05:32:08 +00:00
46 lines
2.4 KiB
HTML
46 lines
2.4 KiB
HTML
{% load static %}
|
|
|
|
<footer class="my-5 md:my-6 mx-auto max-w-7xl px-4 sm:mt-24 py-5 md:py-4">
|
|
{% if not request.user.is_authenticated %}
|
|
<div class="md:flex" id="footerSignup">
|
|
<div class="text-left md:w-1/2 content-center gap-4 grid">
|
|
<div>
|
|
<h1 class="text-4xl tracking-tight font-extrabold sm:text-5xl md:text-6xl block xl:inline pt-6">
|
|
Join the growing community
|
|
</h1>
|
|
</div>
|
|
<div class="my-16 grid grid-cols-1 md:grid-cols-2 gap-4">
|
|
<div><img class="float-left mr-3 mt-1 h-8 w-auto" src="{% static 'img/icons/icon_Cup-C++.svg' %}" alt=""> Best collections of C++ libraries</div>
|
|
<div><img class="float-left mr-3 mt-1 h-8 w-auto" src="{% static 'img/icons/icon_graduation-cap.svg' %}" alt=""> Supports research and education for C++</div>
|
|
<div><img class="float-left mr-3 mt-1 h-8 w-auto" src="{% static 'img/icons/icon_down-arrow-stack.svg' %}" alt=""> Accessible with minimal restriction</div>
|
|
<div><img class="float-left mr-3 mt-1 h-8 w-auto" src="{% static 'img/icons/icon_three-people.svg' %}" alt=""> Collaborative community</div>
|
|
</div>
|
|
<div class="hidden mt-5 max-w-md sm:flex md:mt-8">
|
|
<div class="rounded-md shadow">
|
|
<a href="{% url 'account_signup' %}" class="w-full flex items-center justify-center px-8 py-3 border border-orange text-base font-medium rounded-md text-orange md:py-3 md:text-lg md:px-8">Sign Up > </a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="text-center md:w-1/2">
|
|
<div id="scene01"></div>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<div class="px-5 pt-4 md:flex items-center mt-16">
|
|
<div class="mr-11">
|
|
<img class="h-[53px] w-auto" src="{% static 'img/Boost_Symbol_Transparent.svg' %}" alt="">
|
|
</div>
|
|
<div class="justify-between md:space-x-10 pt-3 pb-3 w-1/2">
|
|
<a class="my-2 block md:inline" href="/">© 2022 Boost.org</a>
|
|
<a class="my-2 block md:inline" href="{% url 'contact' %}">Contact</a>
|
|
<a class="my-2 block md:inline" href="">Privacy Policy</a>
|
|
<a class="my-2 block md:inline" href="">Terms of Use</a>
|
|
</div>
|
|
<div class="md:space-x-5 space-x-3 pt-3 pb-3 md:text-right w-1/2">
|
|
<a href="https://twitter.com/boost_libraries" target="_blank"><i class="fab fa-twitter text-orange hover:orange/70"></i></a>
|
|
<a href="https://github.com/boostorg" target="_blank"><i class="fab fa-github text-orange hover:orange/70"></i></a>
|
|
</div>
|
|
</div>
|
|
</footer>
|