{#
/**
* @file
* Default theme implementation to display a one plus four grid layout.
*
* Available variables:
* - content: The content for this layout.
* - attributes: HTML attributes for the layout
.
*
* @ingroup themeable
*/
#}
{%
set classes = [
'layout',
'layout--oneplusfourgrid-section',
]
%}
{% if content %}
{% if content.first %}
{{ content.first }}
{% endif %}
{% if content.second or content.third or content.fourth or content.fifth %}
{% endif %}
{% if content.second %}
{{ content.second }}
{% endif %}
{% if content.third %}
{{ content.third }}
{% endif %}
{% if content.fourth %}
{{ content.fourth }}
{% endif %}
{% if content.fifth %}
{{ content.fifth }}
{% endif %}
{% if content.second or content.third or content.fourth or content.fifth %}