{# /** * @file * Default theme implementation to display a one col three rows layout. * * Available variables: * - content: The content for this layout. * - attributes: HTML attributes for the layout
. * * @ingroup themeable */ #} {% set classes = [ 'layout', 'layout--onecolthreerows', ] %} content %} {% if content.first %} {{ content.first }}
{% endif %} {% if content.second %} {{ content.second }} {% endif %} {% if content.third %} {{ content.third }} {% endif %} {% endif %}