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