ds-2col.html.twig in Display Suite 8.4
Same filename and directory in other branches
Display Suite 2 column template.
Available variables:
- outer_wrapper: outer wrapper element
- left_wrapper: wrapper element around left region
- right_wrapper: wrapper element around right region
- attributes: layout attributes
- left_attributes: attributes for left region
- right_attributes: attributes for right region
- left: content of left region
- right: content of right region
File
templates/ds-2col.html.twigView source
- {#
- /**
- * @file
- * Display Suite 2 column template.
- *
- * Available variables:
- * - outer_wrapper: outer wrapper element
- * - left_wrapper: wrapper element around left region
- * - right_wrapper: wrapper element around right region
- * - attributes: layout attributes
- * - left_attributes: attributes for left region
- * - right_attributes: attributes for right region
- * - left: content of left region
- * - right: content of right region
- */
- #}
- <{{ outer_wrapper }}{{ attributes.addClass('ds-2col', 'clearfix') }}>
-
- {{ title_suffix.contextual_links }}
-
- <{{ left_wrapper }}{{ left_attributes.addClass('group-left') }}>
- {{ left }}
- </{{ left_wrapper }}>
-
- <{{ right_wrapper }}{{ right_attributes.addClass('group-right') }}>
- {{ right }}
- </{{ right_wrapper }}>
-
- </{{ outer_wrapper }}>