2013-05-24 16:48:56 +00:00
|
|
|
{#
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Default theme implementation to display a single Drupal page while offline.
|
|
|
|
*
|
2014-04-17 20:12:22 +00:00
|
|
|
* All available variables are mirrored in page.html.twig.
|
2013-05-24 16:48:56 +00:00
|
|
|
* Some may be blank but they are provided for consistency.
|
|
|
|
*
|
|
|
|
* @see template_preprocess_maintenance_page()
|
|
|
|
*
|
|
|
|
* @ingroup themeable
|
|
|
|
*/
|
|
|
|
#}
|
2014-06-13 18:57:27 +00:00
|
|
|
<div class="layout-container">
|
2013-05-24 16:48:56 +00:00
|
|
|
|
2013-08-05 22:52:22 +00:00
|
|
|
<header role="banner">
|
|
|
|
{% if logo %}
|
|
|
|
<a href="{{ front_page }}" title="{{ 'Home'|t }}" rel="home">
|
|
|
|
<img src="{{ logo }}" alt="{{ 'Home'|t }}"/>
|
|
|
|
</a>
|
|
|
|
{% endif %}
|
2013-05-24 16:48:56 +00:00
|
|
|
|
2013-08-05 22:52:22 +00:00
|
|
|
{% if site_name or site_slogan %}
|
|
|
|
<div class="name-and-slogan">
|
|
|
|
{% if site_name %}
|
|
|
|
<h1 class="site-name">
|
|
|
|
<a href="{{ front_page }}" title="{{ 'Home'|t }}" rel="home">{{ site_name }}</a>
|
|
|
|
</h1>
|
|
|
|
{% endif %}
|
2013-05-24 16:48:56 +00:00
|
|
|
|
2013-08-05 22:52:22 +00:00
|
|
|
{% if site_slogan %}
|
|
|
|
<div class="site-slogan">{{ site_slogan }}</div>
|
|
|
|
{% endif %}
|
|
|
|
</div>{# /.name-and-slogan #}
|
|
|
|
{% endif %}
|
2013-05-24 16:48:56 +00:00
|
|
|
|
2013-08-05 22:52:22 +00:00
|
|
|
</header>
|
2013-05-24 16:48:56 +00:00
|
|
|
|
2013-08-05 22:52:22 +00:00
|
|
|
<main role="main">
|
|
|
|
{% if title %}
|
|
|
|
<h1>{{ title }}</h1>
|
|
|
|
{% endif %}
|
2013-05-24 16:48:56 +00:00
|
|
|
|
2013-08-05 22:52:22 +00:00
|
|
|
{{ messages }}
|
2013-05-24 16:48:56 +00:00
|
|
|
|
2014-04-17 20:12:22 +00:00
|
|
|
{{ page.content }}
|
2013-08-05 22:52:22 +00:00
|
|
|
</main>
|
2013-05-24 16:48:56 +00:00
|
|
|
|
2013-08-05 22:52:22 +00:00
|
|
|
{% if page.sidebar_first %}
|
2014-06-13 18:57:27 +00:00
|
|
|
<aside class="layout-sidebar-first" role="complementary">
|
2013-08-05 22:52:22 +00:00
|
|
|
{{ page.sidebar_first }}
|
2014-06-13 18:57:27 +00:00
|
|
|
</aside>{# /.layout-sidebar-first #}
|
2013-08-05 22:52:22 +00:00
|
|
|
{% endif %}
|
2013-05-24 16:48:56 +00:00
|
|
|
|
2013-08-05 22:52:22 +00:00
|
|
|
{% if page.sidebar_second %}
|
2014-06-13 18:57:27 +00:00
|
|
|
<aside class="layout-sidebar-second" role="complementary">
|
2013-08-05 22:52:22 +00:00
|
|
|
{{ page.sidebar_second }}
|
2014-06-13 18:57:27 +00:00
|
|
|
</aside>{# /.layout-sidebar-second #}
|
2013-08-05 22:52:22 +00:00
|
|
|
{% endif %}
|
2013-05-24 16:48:56 +00:00
|
|
|
|
2013-08-05 22:52:22 +00:00
|
|
|
{% if page.footer %}
|
|
|
|
<footer role="contentinfo">
|
|
|
|
{{ page.footer }}
|
|
|
|
</footer>
|
|
|
|
{% endif %}
|
2013-05-24 16:48:56 +00:00
|
|
|
|
2014-06-13 18:57:27 +00:00
|
|
|
</div>{# /.layout-container #}
|