7a648926e5764a9fba4c09f182a9b113070e743b
[yaffs-website] / web / modules / contrib / bootstrap_layouts / templates / 3.0.0 / bs-4col-bricked.html.twig
1 {#
2 /**
3  * @file
4  * Bootstrap Layouts: "4 Columns (bricked)" 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  * - top_first
13  * - top_second
14  * - top_third
15  * - top_fourth
16  * - middle
17  * - bottom_first
18  * - bottom_second
19  * - bottom_third
20  * - bottom_fourth
21  * - bottom
22  *
23  * Each region variable contains the following properties:
24  * - wrapper: The HTML element to use to wrap this region.
25  * - attributes: The HTML attributes to use on the wrapper for this region.
26  * - content: The content to go inside the wrapper for this region.
27  */
28 #}
29 <{{ wrapper }}{{ attributes }}>
30   {{ title_suffix.contextual_links }}
31
32   {% if top.content %}
33   <{{ top.wrapper }}{{ top.attributes }}>
34     {{ top.content }}
35   </{{ top.wrapper }}>
36   {% endif %}
37
38   {% if top_first.content %}
39   <{{ top_first.wrapper }}{{ top_first.attributes }}>
40     {{ top_first.content }}
41   </{{ top_first.wrapper }}>
42   {% endif %}
43
44   {% if top_second.content %}
45   <{{ top_second.wrapper }}{{ top_second.attributes }}>
46     {{ top_second.content }}
47   </{{ top_second.wrapper }}>
48   {% endif %}
49
50   {% if top_third.content %}
51   <{{ top_third.wrapper }}{{ top_third.attributes }}>
52     {{ top_third.content }}
53   </{{ top_third.wrapper }}>
54   {% endif %}
55
56   {% if top_fourth.content %}
57   <{{ top_fourth.wrapper }}{{ top_fourth.attributes }}>
58     {{ top_fourth.content }}
59   </{{ top_fourth.wrapper }}>
60   {% endif %}
61
62   {% if middle.content %}
63   <{{ middle.wrapper }}{{ middle.attributes }}>
64     {{ middle.content }}
65   </{{ middle.wrapper }}>
66   {% endif %}
67
68   {% if bottom_first.content %}
69   <{{ bottom_first.wrapper }}{{ bottom_first.attributes }}>
70     {{ bottom_first.content }}
71   </{{ bottom_first.wrapper }}>
72   {% endif %}
73
74   {% if bottom_second.content %}
75   <{{ bottom_second.wrapper }}{{ bottom_second.attributes }}>
76     {{ bottom_second.content }}
77   </{{ bottom_second.wrapper }}>
78   {% endif %}
79
80   {% if bottom_third.content %}
81   <{{ bottom_third.wrapper }}{{ bottom_third.attributes }}>
82     {{ bottom_third.content }}
83   </{{ bottom_third.wrapper }}>
84   {% endif %}
85
86   {% if bottom_fourth.content %}
87   <{{ bottom_fourth.wrapper }}{{ bottom_fourth.attributes }}>
88     {{ bottom_fourth.content }}
89   </{{ bottom_fourth.wrapper }}>
90   {% endif %}
91
92   {% if bottom.content %}
93   <{{ bottom.wrapper }}{{ bottom.attributes }}>
94     {{ bottom.content }}
95   </{{ bottom.wrapper }}>
96   {% endif %}
97
98 </{{ wrapper }}>