Added another front page space for Yaffs info. Added roave security for composer.
[yaffs-website] / web / core / themes / stable / templates / admin / admin-page.html.twig
1 {#
2 /**
3  * @file
4  * Theme override 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 #}
15
16 <div class="clearfix">
17   {{ system_compact_link }}
18   {% for container in containers %}
19     <div class="layout-column layout-column--half">
20       {% for block in container.blocks %}
21         {{ block }}
22       {% endfor %}
23     </div>
24   {% endfor %}
25 </div>