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