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