Files
website-v2/templates/support/support.html
2023-05-16 14:31:55 -07:00

98 lines
3.3 KiB
HTML

{% extends "base.html" %}
{% load i18n %}
{% load static %}
{% block title %}{% trans "Support" %}{% endblock %}
{% block subnav %}
<div class="py-8 px-4 space-y-4 text-sm uppercase border-b md:py-2 md:px-0 md:space-x-10 border-slate">
<a href="{% url 'support' %}" class="block md:inline md:py-1 md:border-b text-orange md:border-orange">Support</a>
<a href="{% url 'getting-started' %}" class="block md:inline">Getting Started</a>
<a href="https://cppalliance.org/slack/" target="_blank" class="block md:inline">Join Slack</a>
</div>
{% endblock %}
{% block content %}
<div class="py-0 px-3 mb-3 md:py-6 md:px-0">
<div class="py-16 w-full">
<h1 class="text-4xl text-center">Support</h1>
<p class="mt-0 text-center">
We are here for you! If you need us, we are a click away!
</p>
</div>
<div class="pb-6 mb-8 border-b border-slate">
<div class="items-center my-8 space-x-0 md:flex md:space-x-8">
<div class="mb-4 md:w-1/2">
<div id="supportStart"></div>
</div>
<div class="mb-4 md:w-1/2">
<h3>Getting Started</h3>
<p>
Welcome to the Boost libraries! By the time you've completed this tutorial, you'll be at least somewhat
comfortable with the contents of a Boost distribution and how to go about using it.
</p>
<div class="my-3">
<a href="#" class="py-2 px-4 text-sm uppercase rounded-md border text-orange border-slate">Start Now</a>
</div>
</div>
</div>
<div class="items-center my-8 space-x-0 md:flex md:space-x-8">
<div class="order-1 mb-4 md:order-2 md:w-1/2">
<div id="joinSlack"></div>
</div>
<div class="mb-4 md:w-1/2">
<h3>Join our Slack!</h3>
<p>
We have engaging conversations with our community of over 21K members! As a question, state an update, or
make a new friend in the community!
</p>
<div class="my-3">
<a href="https://cppalliance.org/slack/" target="_blank" class="py-2 px-4 text-sm uppercase rounded-md border text-orange border-slate">Learn More</a>
</div>
</div>
</div>
</div>
<div class="space-x-8 w-full md:flex">
<div class="md:w-1/3">
<h3>Contact Us For Support</h3>
<p>
Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus non vestibulum velit. Aenean fringilla, arcu sit amet.
</p>
</div>
<div class="md:w-2/3">
{% include 'includes/_contact_form.html' with form=form %}
</div>
</div>
</div>
{% endblock %}
{% block footer_js %}
<script>
var supportStartAnimParams = {
container: document.getElementById('supportStart'),
path: '{% static "animations/Scene05/data.json" %}',
renderer: 'svg',
loop: true,
autoplay: true,
name: "Press Start",
};
anim = lottie.loadAnimation(supportStartAnimParams);
var joinSlackAnimParams = {
container: document.getElementById('joinSlack'),
path: '{% static "animations/Scene04/data.json" %}',
renderer: 'svg',
loop: true,
autoplay: true,
name: "Join our Slack",
};
anim = lottie.loadAnimation(joinSlackAnimParams);
</script>
{% endblock %}