{# /** * @file * Theme override for a three-column layout. * * Available variables: * - content: The content for this layout. * - attributes: HTML attributes for the layout
. */ #} {% if content %} {% if content.first %}
{{ content.first }}
{% endif %} {% if content.second %}
{{ content.second }}
{% endif %} {% if content.third %}
{{ content.third }}
{% endif %}
{% endif %}