{% extends 'partials/base.html.twig' %} {% block body %} {%- set loc = page.header.location ?? null -%} {%- set social = theme.social ?? {} -%}
{% include 'partials/breadcrumbs.html.twig' %}
{% if page.header.badge %}{{ page.header.badge }}{% endif %}

{{ page.title }}

{% if page.header.summary %}
{{ page.header.summary }}
{% endif %}

Formulário de Contato

{% include 'forms/form.html.twig' %}

Redes Sociais

{% for net, link in social if link %} {{ net|capitalize }} {% endfor %}
{% if loc %}

Localização

{{ loc.name }}

{% for line in loc.address_lines %}

{{ line }}

{% endfor %} {% if loc.phone %}

{{ loc.phone }}

{% endif %} {% if loc.map_query %}
{% endif %}
{% endif %}
{% endblock %}