eb9afd8d20b7d824b342d3f24035e6194498325f
[yaffs-website] / templates / block / block-list.html.twig
1 {#
2 /**
3  * @file
4  * Two column template for the block add/edit form.
5  *
6  * This template will be used when a block edit form specifies 'block_edit_form'
7  * as its #theme callback.  Otherwise, by default, block add/edit forms will be
8  * themed by form.html.twig.
9  *
10  * Available variables:
11  * - form: The block add/edit form.
12  *
13  * @ingroup templates
14  */
15 #}
16 <div class="row">
17   <div class="col-xs-9">
18     {{ form|without('place_blocks') }}
19   </div>
20   <div class="col-xs-3">
21     {{ form.place_blocks }}
22   </div>
23 </div>