Security update for Core, with self-updated composer
[yaffs-website] / web / core / themes / seven / templates / install-page.html.twig
1 {#
2 /**
3  * @file
4  * Seven theme implementation to display a Drupal installation page.
5  *
6  * All available variables are mirrored in page.html.twig.
7  * Some may be blank but they are provided for consistency.
8  *
9  * @see template_preprocess_install_page()
10  */
11 #}
12 <div class="layout-container">
13
14   <header role="banner">
15     {% if site_name %}
16       <h1 class="page-title">
17         {{ site_name }}
18         {% if site_version %}
19           <span class="site-version">{{ site_version }}</span>
20         {% endif %}
21       </h1>
22     {% endif %}
23   </header>
24
25   {% if page.sidebar_first %}
26     <aside class="layout-sidebar-first" role="complementary">
27       {{ page.sidebar_first }}
28     </aside>{# /.layout-sidebar-first #}
29   {% endif %}
30
31   <main role="main">
32     {% if title %}
33       <h2 class="heading-a">{{ title }}</h2>
34     {% endif %}
35     {{ page.highlighted }}
36     {{ page.content }}
37   </main>
38
39   {% if page.sidebar_second %}
40     <aside class="layout-sidebar-second" role="complementary">
41       {{ page.sidebar_second }}
42     </aside>{# /.layout-sidebar-second #}
43   {% endif %}
44
45   {% if page.page_bottom %}
46     <footer role="contentinfo">
47       {{ page.page_bottom }}
48     </footer>
49   {% endif %}
50
51 </div>{# /.layout-container #}