{# /** * @file * Default theme implementation for a three column layout. * * This template provides a three column 33%-34%-33% display layout, with * additional areas for the top and the bottom. * * Available variables: * - content: The content for this layout. * - attributes: HTML attributes for the layout
. * * @ingroup themeable */ #} {% set classes = [ 'layout', 'layout--threecol-33-34-33', ] %} {% if content %} {% if content.top %}
{{ content.top }}
{% endif %} {% if content.first %}
{{ content.first }}
{% endif %} {% if content.second %}
{{ content.second }}
{% endif %} {% if content.third %}
{{ content.third }}
{% endif %} {% if content.bottom %}
{{ content.bottom }}
{% endif %}
{% endif %}