Added another front page space for Yaffs info. Added roave security for composer.
[yaffs-website] / web / core / themes / stable / templates / layout / maintenance-page.html.twig
1 {#
2 /**
3  * @file
4  * Theme override 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 <header role="banner">
13   {% if logo %}
14     <a href="{{ front_page }}" title="{{ 'Home'|t }}" rel="home">
15       <img src="{{ logo }}" alt="{{ 'Home'|t }}"/>
16     </a>
17   {% endif %}
18
19   {% if site_name or site_slogan %}
20     {% if site_name %}
21       <h1>
22         <a href="{{ front_page }}" title="{{ 'Home'|t }}" rel="home">{{ site_name }}</a>
23       </h1>
24     {% endif %}
25
26     {% if site_slogan %}
27       <div>{{ site_slogan }}</div>
28     {% endif %}
29   {% endif %}
30 </header>
31
32 <main role="main">
33   {% if title %}
34     <h1>{{ title }}</h1>
35   {% endif %}
36
37   {{ page.highlighted }}
38
39   {{ page.content }}
40 </main>
41
42 {% if page.sidebar_first %}
43   <aside role="complementary">
44     {{ page.sidebar_first }}
45   </aside>
46 {% endif %}
47
48 {% if page.sidebar_second %}
49   <aside role="complementary">
50     {{ page.sidebar_second }}
51   </aside>
52 {% endif %}
53
54 {% if page.footer %}
55   <footer role="contentinfo">
56     {{ page.footer }}
57   </footer>
58 {% endif %}