{# /** * @file * Default theme implementation for a four-column 25%-25%-25%-25% layout. * * Available variables: * - content: The content for this layout. * - attributes: HTML attributes for the layout
. * * @ingroup themeable */ #} {% set classes = [ 'layout', 'layout--fourcol-section', ] %} {% if content %} {% if content.first %}
{{ content.first }}
{% endif %} {% if content.second %}
{{ content.second }}
{% endif %} {% if content.third %}
{{ content.third }}
{% endif %} {% if content.fourth %}
{{ content.fourth }}
{% endif %}
{% endif %}