{# /** * @file * Default theme implementation of a contact composite webform element. * * Available variables: * - content: The contact webform element to be output. * - flexbox: Determines if Flexbox layout should be applied to the composite * element. * * @see template_preprocess_webform_composite_contact() * * @ingroup themeable */ #} {% if flexbox %}
{% if content.name or content.company %}
{% if content.name %}
{{ content.name }}
{% endif %} {% if content.company %}
{{ content.company }}
{% endif %}
{% endif %} {% if content.email or content.phone %}
{% if content.email %} {% endif %} {% if content.phone %}
{{ content.phone }}
{% endif %}
{% endif %} {% if content.address %}
{{ content.address }}
{% endif %} {% if content.address_2 %}
{{ content.address_2 }}
{% endif %} {% if content.city or content.state_province or content.postal_code %}
{% if content.city %}
{{ content.city }}
{% endif %} {% if content.state_province %}
{{ content.state_province }}
{% endif %} {% if content.postal_code %}
{{ content.postal_code }}
{% endif %}
{% endif %} {% if content.country %}
{{ content.country }}
{% endif %}
{% else %} {{ content }} {% endif %}