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