Version 1
[yaffs-website] / web / core / modules / system / templates / admin-page.html.twig
1 {#
2 /**
3  * @file
4  * Default theme implementation for an administrative page.
5  *
6  * Available variables:
7  * - system_compact_link: Themed link to toggle compact view.
8  * - containers: An list of administrative blocks keyed by position: left or
9  *   right. Contains:
10  *   - blocks: A list of blocks within a container.
11  *
12  * @see template_preprocess_admin_page()
13  *
14  * @ingroup themeable
15  */
16 #}
17
18 <div class="clearfix">
19   {{ system_compact_link }}
20   {% for container in containers %}
21     <div class="layout-column layout-column--half">
22       {% for block in container.blocks %}
23         {{ block }}
24       {% endfor %}
25     </div>
26   {% endfor %}
27 </div>