1KA_F2F/frontend/drupal9/web/modules/contrib/ds/templates/ds-3col-equal-width.html.twig

37 lines
1.0 KiB
Twig
Raw Normal View History

2021-07-27 14:46:32 +02:00
{#
/**
* @file
* Display Suite 3 column template.
*
* Available variables:
* - outer_wrapper: outer wrapper element
* - left_wrapper: wrapper element around left region
* - middle_wrapper: wrapper element around middle region
* - right_wrapper: wrapper element around right region
* - attributes: layout attributes
* - left_attributes: attributes for left region
* - middle_attributes: attributes for middle region
* - right_attributes: attributes for right region
* - left: content of left region
* - middle: content of middle region
* - right: content of right region
*/
#}
<{{ outer_wrapper }}{{ attributes.addClass('ds-3col-equal', 'clearfix') }}>
{{ title_suffix.contextual_links }}
<{{ left_wrapper }}{{ left_attributes.addClass('group-left') }}>
{{ left }}
</{{ left_wrapper }}>
<{{ middle_wrapper }}{{ middle_attributes.addClass('group-middle') }}>
{{ middle }}
</{{ middle_wrapper }}>
<{{ right_wrapper }}{{ right_attributes.addClass('group-right') }}>
{{ right }}
</{{ right_wrapper }}>
</{{ outer_wrapper }}>