{# /** * @file * Default theme implementation for a three column layout. * * This template provides a three column 25%-50%-25% 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-25-50-25', ] %} {% 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 %}