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