Added Entity and Entity Reference Revisions which got dropped somewhere along the...
[yaffs-website] / web / core / themes / seven / templates / maintenance-page.html.twig
1 {#
2 /**
3  * @file
4  * Seven's theme implementation to display a single Drupal page while offline.
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_maintenance_page()
10  */
11 #}
12 <div class="layout-container">
13
14   <header role="banner">
15     {% if site_name %}
16       <h1 class="page-title">{{ site_name }}</h1>
17     {% endif %}
18   </header>
19
20   {% if page.sidebar_first %}
21     <aside class="layout-sidebar-first" role="complementary">
22       {{ page.sidebar_first }}
23     </aside>{# /.layout-sidebar-first #}
24   {% endif %}
25
26   <main role="main">
27     {% if title %}
28       <h1>{{ title }}</h1>
29     {% endif %}
30     {{ page.highlighted }}
31     {{ page.content }}
32   </main>
33
34   {% if page.page_bottom %}
35     <footer role="contentinfo">
36       {{ page.page_bottom }}
37     </footer>
38   {% endif %}
39
40 </div>{# /.layout-container #}