Version 1
[yaffs-website] / web / modules / contrib / bootstrap_layouts / templates / 3.0.0 / bs-3col-stacked.html.twig
1 {#
2 /**
3  * @file
4  * Bootstrap Layouts: "3 Columns (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  * - left
13  * - middle
14  * - right
15  * - bottom
16  *
17  * Each region variable contains the following properties:
18  * - wrapper: The HTML element to use to wrap this region.
19  * - attributes: The HTML attributes to use on the wrapper for this region.
20  * - content: The content to go inside the wrapper for this region.
21  */
22 #}
23 <{{ wrapper }}{{ attributes }}>
24   {{ title_suffix.contextual_links }}
25
26   {% if top.content %}
27   <{{ top.wrapper }}{{ top.attributes }}>
28     {{ top.content }}
29   </{{ top.wrapper }}>
30   {% endif %}
31
32   {% if left.content %}
33   <{{ left.wrapper }}{{ left.attributes }}>
34     {{ left.content }}
35   </{{ left.wrapper }}>
36   {% endif %}
37
38   {% if middle.content %}
39   <{{ middle.wrapper }}{{ middle.attributes }}>
40     {{ middle.content }}
41   </{{ middle.wrapper }}>
42   {% endif %}
43
44   {% if right.content %}
45   <{{ right.wrapper }}{{ right.attributes }}>
46     {{ right.content }}
47   </{{ right.wrapper }}>
48   {% endif %}
49
50   {% if bottom.content %}
51   <{{ bottom.wrapper }}{{ bottom.attributes }}>
52     {{ bottom.content }}
53   </{{ bottom.wrapper }}>
54   {% endif %}
55
56 </{{ wrapper }}>