Files
website-v2/templates/support/support.html
2024-12-23 14:21:12 -08:00

60 lines
2.2 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-3xl 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>
{% endblock %}