{# /** * @file * Bootstrap Layouts: "2 Columns (stacked)" template. * * Available layout variables: * - wrapper: Wrapper element for the layout container. * - attributes: Wrapper attributes for the layout container. * * Available region variables: * - top * - left * - right * - bottom * * Each region variable contains the following properties: * - wrapper: The HTML element to use to wrap this region. * - attributes: The HTML attributes to use on the wrapper for this region. * - content: The content to go inside the wrapper for this region. */ #} <{{ wrapper }}{{ attributes }}> {{ title_suffix.contextual_links }} {% if top.content %} <{{ top.wrapper }}{{ top.attributes }}> {{ top.content }} {% endif %} {% if left.content %} <{{ left.wrapper }}{{ left.attributes }}> {{ left.content }} {% endif %} {% if right.content %} <{{ right.wrapper }}{{ right.attributes }}> {{ right.content }} {% endif %} {% if bottom.content %} <{{ bottom.wrapper }}{{ bottom.attributes }}> {{ bottom.content }} {% endif %}