{# /** * @file * Theme override to display a two-column layout. * * Available variables: * - content: The content for this layout. * - attributes: HTML attributes for the layout
. */ #} {% set classes = [ 'layout', 'layout--twocol', ] %} {% if content %} {% if content.top %}
{{ content.top }}
{% endif %} {% if content.first %}
{{ content.first }}
{% endif %} {% if content.second %}
{{ content.second }}
{% endif %} {% if content.bottom %}
{{ content.bottom }}
{% endif %}
{% endif %}