laces_base-1.0.x-dev/layouts/three_column/laces-base--three-column.html.twig
layouts/three_column/laces-base--three-column.html.twig
{#
/**
* @file
* Default theme implementation to display a two-column layout.
*
* Available variables:
* - in_preview: Whether the plugin is being rendered in preview mode.
* - content: The content for this layout.
* - attributes: HTML attributes for the layout <div>.
*
* @ingroup themeable
*/
#}
{% if content %}
<div{{ attributes }}>
<div{{ row_attributes }}>
<div {{ region_attributes.first }}>
{{ content.first }}
</div>
<div {{ region_attributes.second }}>
{{ content.second }}
</div>
<div {{ region_attributes.third }}>
{{ content.third }}
</div>
</div>
</div>
{% endif %}
