Interim commit.
[yaffs-website] / web / modules / contrib / bootstrap_layouts / templates / 3.0.0 / bs-1col-stacked.html.twig
1 {#
2 /**
3  * @file
4  * Bootstrap Layouts: "1 Column (stacked)" 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  * - top
12  * - main
13  * - bottom
14  *
15  * Each region variable contains the following properties:
16  * - wrapper: The HTML element to use to wrap this region.
17  * - attributes: The HTML attributes to use on the wrapper for this region.
18  * - content: The content to go inside the wrapper for this region.
19  */
20 #}
21 <{{ wrapper }}{{ attributes }}>
22   {{ title_suffix.contextual_links }}
23
24   {% if top.content %}
25   <{{ top.wrapper }}{{ top.attributes }}>
26     {{ top.content }}
27   </{{ top.wrapper }}>
28   {% endif %}
29
30   {% if main.content %}
31   <{{ main.wrapper }}{{ main.attributes }}>
32     {{ main.content }}
33   </{{ main.wrapper }}>
34   {% endif %}
35
36   {% if bottom.content %}
37   <{{ bottom.wrapper }}{{ bottom.attributes }}>
38     {{ bottom.content }}
39   </{{ bottom.wrapper }}>
40   {% endif %}
41
42 </{{ wrapper }}>