{# /** * @file * Default theme implementation for a two column layout. * * This template provides a two column display layout with full width areas at * the top, bottom and in the middle. * * Available variables: * - content: The content for this layout. * - attributes: HTML attributes for the layout
. * * @ingroup themeable */ #} {% set classes = [ 'layout', 'layout--twocol-bricks', ] %} {% if content %} {% if content.top %}
{{ content.top }}
{% endif %} {% if content.first_above %}
{{ content.first_above }}
{% endif %} {% if content.second_above %}
{{ content.second_above }}
{% endif %} {% if content.middle %}
{{ content.middle }}
{% endif %} {% if content.first_below %}
{{ content.first_below }}
{% endif %} {% if content.second_below %}
{{ content.second_below }}
{% endif %} {% if content.bottom %}
{{ content.bottom }}
{% endif %}
{% endif %}