Version 1
[yaffs-website] / web / modules / contrib / bootstrap_layouts / templates / 3.0.0 / bs-1col.html.twig
1 {#
2 /**
3  * @file
4  * Bootstrap Layouts: "1 Column" template.
5  *
6  * Available layout variables:
7  * - wrapper: Wrapper element for the layout container.
8  * - attributes: Wrapper attributes for the layout container.
9  *
10  * Available region variables:
11  * - main
12  *
13  * Each region variable contains the following properties:
14  * - wrapper: The HTML element to use to wrap this region.
15  * - attributes: The HTML attributes to use on the wrapper for this region.
16  * - content: The content to go inside the wrapper for this region.
17  */
18 #}
19 <{{ wrapper }}{{ attributes }}>
20   {{ title_suffix.contextual_links }}
21   <{{ main.wrapper }}{{ main.attributes }}>
22     {{ main.content }}
23   </{{ main.wrapper }}>
24 </{{ wrapper }}>