23 lines
574 B
Twig
23 lines
574 B
Twig
{#
|
|
/**
|
|
* @file
|
|
* Display Suite 1 column wrapper template.
|
|
*
|
|
* Available variables:
|
|
* - outer_wrapper: outer wrapper element
|
|
* - ds_content_wrapper: wrapper around content
|
|
* - attributes: outer wrapper attributes
|
|
* - ds_content_attributes: attributes for ds_content region
|
|
* - ds_content: content of ds_content region
|
|
*/
|
|
#}
|
|
<{{ outer_wrapper }}{{ attributes.addClass('ds-1col', 'clearfix') }}>
|
|
|
|
{{ title_suffix.contextual_links }}
|
|
|
|
<{{ ds_content_wrapper }}{{ ds_content_attributes }}>
|
|
{{ ds_content }}
|
|
</{{ ds_content_wrapper }}>
|
|
|
|
</{{ outer_wrapper }}>
|