maintenance-page.html.twig
Same filename in this branch
- 9 core/profiles/demo_umami/themes/umami/templates/classy/layout/maintenance-page.html.twig
- 9 core/themes/olivero/templates/maintenance-page.html.twig
- 9 core/themes/stable9/templates/layout/maintenance-page.html.twig
- 9 core/themes/seven/templates/maintenance-page.html.twig
- 9 core/themes/bartik/templates/maintenance-page.html.twig
- 9 core/themes/stable/templates/layout/maintenance-page.html.twig
- 9 core/themes/starterkit_theme/templates/layout/maintenance-page.html.twig
- 9 core/themes/classy/templates/layout/maintenance-page.html.twig
- 9 core/modules/system/templates/maintenance-page.html.twig
Same filename in other branches
- 8.9.x core/profiles/demo_umami/themes/umami/templates/classy/layout/maintenance-page.html.twig
- 8.9.x core/themes/seven/templates/maintenance-page.html.twig
- 8.9.x core/themes/claro/templates/maintenance-page.html.twig
- 8.9.x core/themes/bartik/templates/maintenance-page.html.twig
- 8.9.x core/themes/stable/templates/layout/maintenance-page.html.twig
- 8.9.x core/themes/classy/templates/layout/maintenance-page.html.twig
- 8.9.x core/modules/system/templates/maintenance-page.html.twig
- 10 core/profiles/demo_umami/themes/umami/templates/classy/layout/maintenance-page.html.twig
- 10 core/themes/olivero/templates/maintenance-page.html.twig
- 10 core/themes/stable9/templates/layout/maintenance-page.html.twig
- 10 core/themes/claro/templates/maintenance-page.html.twig
- 10 core/themes/starterkit_theme/templates/layout/maintenance-page.html.twig
- 10 core/modules/system/templates/maintenance-page.html.twig
- 11.x core/profiles/demo_umami/themes/umami/templates/classy/layout/maintenance-page.html.twig
- 11.x core/themes/olivero/templates/maintenance-page.html.twig
- 11.x core/themes/stable9/templates/layout/maintenance-page.html.twig
- 11.x core/themes/claro/templates/maintenance-page.html.twig
- 11.x core/themes/starterkit_theme/templates/layout/maintenance-page.html.twig
- 11.x core/modules/system/templates/maintenance-page.html.twig
Claro's theme implementation for maintenance page.
This template is used for rendering non-frontpage maintenance pages. An example of this is /update.php.
All available variables are mirrored in page.html.twig. Some may be blank but they are provided for consistency.
See also
template_preprocess_maintenance_page()
maintenance-page--front.html.twig
File
-
core/
themes/ claro/ templates/ maintenance-page.html.twig
View source
- {#
- /**
- * @file
- * Claro's theme implementation for maintenance page.
- *
- * This template is used for rendering non-frontpage maintenance pages. An
- * example of this is /update.php.
- *
- * All available variables are mirrored in page.html.twig.
- * Some may be blank but they are provided for consistency.
- *
- * @see template_preprocess_maintenance_page()
- * @see maintenance-page--front.html.twig
- */
- #}
- <div class="layout-container">
-
- <header role="banner">
- {% if site_name %}
- <h2 class="site-name">{{ site_name }}</h2>
- {% endif %}
- </header>
-
- {% if page.sidebar_first %}
- <aside class="layout-sidebar-first" role="complementary">
- {{ page.sidebar_first }}
- </aside>{# /.layout-sidebar-first #}
- {% endif %}
-
- <main role="main" class="main-content">
- {% if title %}
- <h1 class="title">{{ title }}</h1>
- {% endif %}
- {{ page.highlighted }}
- <div class="content">
- {{ page.content }}
- </div>
- </main>
-
- {% if page.page_bottom %}
- <footer role="contentinfo">
- {{ page.page_bottom }}
- </footer>
- {% endif %}
-
- </div>{# /.layout-container #}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.