{% extends 'frontend/front-end-base.html.twig' %} {% block title %} {{ page_title|default('Contact Us')|raw|striptags }} {% endblock %} {% block body %} {% embed "frontend/panel/content-page-title.html.twig" %} {% block pageTitle %} {{ page_title|default('Contact Us')|raw }} {% endblock %} {% block bannerImage %} {% set imagePath = asset('build/images/contact-us.png') %} background: url('{{ imagePath }}') top center no-repeat; background-size: cover; {% endblock %} {% block headerFontClass %} text-white {% endblock %} {% endembed %}

Contact Us

{% if blocks is defined and blocks['contact_page_description'] is defined and blocks['contact_page_description']|length > 0 %} {% for block in blocks['contact_page_description'] %}

{{ block.title }}

{{ block.content|raw|striptags }}

{% endfor %} {% endif %} {% if blocks is defined and blocks['contact_page_details'] is defined and blocks['contact_page_details']|length > 0 %} {% for block in blocks['contact_page_details'] %}

    {{ block.content|raw|striptags }}

{% endfor %} {% else %}

    123 Corner Str, Africa

    000 000-0000

     info@africancba.org

{% endif %}
{% if submitted is defined and submitted %} {% set alert_class = 'danger' %} {% set alert = 'Error' %} {% if success %} {% set alert_class = 'success' %} {% set alert = 'Success' %} {% endif %} {% endif %} {{ form_start(form) }} {{ form_end(form) }}
{% endblock %} {% block javascripts %} {% endblock %}