You are here

maintenance-page.html.twig in Drupal 10

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.

File

core/themes/claro/templates/maintenance-page.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Claro's theme implementation for maintenance page.
  5. *
  6. * This template is used for rendering non-frontpage maintenance pages. An
  7. * example of this is /update.php.
  8. *
  9. * All available variables are mirrored in page.html.twig.
  10. * Some may be blank but they are provided for consistency.
  11. *
  12. * @see template_preprocess_maintenance_page()
  13. * @see maintenance-page--front.html.twig
  14. */
  15. #}
  16. <div class="layout-container">
  17. <header role="banner">
  18. {% if site_name %}
  19. <h2 class="site-name">{{ site_name }}</h2>
  20. {% endif %}
  21. </header>
  22. {% if page.sidebar_first %}
  23. <aside class="layout-sidebar-first" role="complementary">
  24. {{ page.sidebar_first }}
  25. </aside>{# /.layout-sidebar-first #}
  26. {% endif %}
  27. <main role="main" class="main-content">
  28. {% if title %}
  29. <h1 class="title">{{ title }}</h1>
  30. {% endif %}
  31. {{ page.highlighted }}
  32. <div class="content">
  33. {{ page.content }}
  34. </div>
  35. </main>
  36. {% if page.page_bottom %}
  37. <footer role="contentinfo">
  38. {{ page.page_bottom }}
  39. </footer>
  40. {% endif %}
  41. </div>{# /.layout-container #}