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