Pull merge.
[yaffs-website] / web / core / modules / system / templates / install-page.html.twig
1 {#
2 /**
3  * @file
4  * Default 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  * @ingroup themeable
12  */
13 #}
14   <div class="layout-container">
15
16     <header role="banner">
17       {% if site_name or site_slogan %}
18         <div class="name-and-slogan">
19           {% if site_name %}
20             <h1>{{ site_name }}</h1>
21           {% endif %}
22           {% if site_slogan %}
23             <div class="site-slogan">{{ site_slogan }}</div>
24           {% endif %}
25         </div>{# /.name-and-slogan #}
26       {% endif %}
27     </header>
28
29     <main role="main">
30       {% if title %}
31         <h2>{{ title }}</h2>
32       {% endif %}
33       {{ page.highlighted }}
34       {{ page.content }}
35     </main>
36
37     {% if page.sidebar_first %}
38       <aside class="layout-sidebar-first" role="complementary">
39         {{ page.sidebar_first }}
40       </aside>{# /.layout-sidebar-first #}
41     {% endif %}
42
43     {% if page.sidebar_second %}
44       <aside class="layout-sidebar-second" role="complementary">
45         {{ page.sidebar_second }}
46       </aside>{# /.layout-sidebar-second #}
47     {% endif %}
48
49     {% if page.footer %}
50       <footer role="contentinfo">
51         {{ page.footer }}
52       </footer>
53     {% endif %}
54
55   </div>{# /.layout-container #}