File: /var/www/hcv/wp-content/themes/hockey/templates/pages/support.twig
{% extends "base.twig" %}
{% block content %}
<main>
<section class="hero-page bg-dark-arrows">
<div class="container">
<h1 class="hero-page__main-title text-left text-align-left text-uppercase">Support</h1>
<p class="hero-page__subtitle text-left h2">Need help?</p>
{% include "templates/partials/dropdown-button.twig" with {'buttonTitle': 'Download app', 'dropdownList': platforms, 'btn_style': 'btn--primary' } %}
<a href="{{ user_manual }}" class="btn btn--hollow small" target="_blank">Download user manual</a>
</div>
</section>
{% for item in post.blocks %}
{% for element in item.elements %}
{{ include('page-elements/views/' ~ element.acf_fc_layout ~ '.twig') }}
{% endfor %}
{% endfor %}
{% endblock %}