{% extends 'base.html.twig' %}
{% block title %}Contact / Assistance{% endblock %}
{% block body %}
{% include "common/contentheader.html.twig" with {'context': 'faq', 'stickymb': '920'} %}
<a id="faq"></a>
<section class="faq bg-grey layout-maxed py-36">
<div class="grid grid-cols-6 gap-16">
<div class="col-span-4">
{% for category in categories %}
<div class="my-20">
<h2 class="mb-20">{{ category.title }}</h2>
{% for faqitem in category.getFaqItems() %}
{% include "faq/faqitem.html.twig" %}
{% endfor %}
</div>
{% endfor %}
</div>
<div class="col-span-2">
</div>
</div>
</section>
<a id="contact"></a>
<div class="faq-contact-container">
{{ include('common/contact.html.twig') }}
</div>
{% endblock %}