{% extends "Global/layout.html.twig" %} {% set pagetitle = 'Contact us'|trans %} {% block title %}{{pagetitle}}{% endblock %} {% block content %} {% set navigation = [{"current": (pagetitle)}] %} {% include "Global/navigation.html.twig" with navigation %}

{{ "FAQ"|trans }}

{% for featuredHelpCenterArticle in services.getHelpCenterArticles({"featured" : true, "limit": 5}).getQuery().getResult() %}

{{ featuredHelpCenterArticle.title }}

{% endfor %}

{{ "Help center"|trans }}

{% if services.getSetting("contact_email") != "" or services.getSetting("contact_phone") != "" or services.getSetting("contact_fax") != "" or services.getSetting("contact_address") != "" %}

{{ "Contact information"|trans }}

{% if services.getSetting("contact_email") != "" %}
{{ services.getSetting("contact_email") }}
{% endif %} {% if services.getSetting("contact_phone") != "" %}
{{ services.getSetting("contact_phone") }}
{% endif %} {% if services.getSetting("contact_fax") != "" %}
{{ services.getSetting("contact_fax") }}
{% endif %} {% if services.getSetting("contact_address") != "" %}
{{ services.getSetting("contact_address") }}
{% endif %}
{% if services.getSetting("contact_email") %}

{{ "Send us an email"|trans }}

{{ form_start(form, {'attr': {'novalidate': 'novalidate', 'class': 'col-12 col-lg-8 mx-auto'}}) }} {{ form_widget(form) }} {{ form_end(form) }} {% endif %} {% endif %}
{% endblock %}