You are here

install-page.html.twig in Drupal 10

Claro theme implementation to display a Drupal installation page.

All available variables are mirrored in page.html.twig. Some may be blank but they are provided for consistency.

File

core/themes/claro/templates/install-page.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Claro theme implementation to display a Drupal installation page.
  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_install_page()
  10. */
  11. #}
  12. <div class="layout-container">
  13. <header role="banner">
  14. {% if site_name %}
  15. <h1 class="site-name">
  16. {{ site_name }}
  17. {% if site_version %}
  18. <span class="site-version">{{ site_version }}</span>
  19. {% endif %}
  20. </h1>
  21. {% endif %}
  22. </header>
  23. {% if page.sidebar_first %}
  24. <aside class="layout-sidebar-first" role="complementary">
  25. {{ page.sidebar_first }}
  26. </aside>{# /.layout-sidebar-first #}
  27. {% endif %}
  28. <main role="main" class="main-content">
  29. {% if title %}
  30. <h2 class="heading-c">{{ title }}</h2>
  31. {% endif %}
  32. {{ page.highlighted }}
  33. {{ page.content }}
  34. </main>
  35. {% if page.sidebar_second %}
  36. <aside class="layout-sidebar-second" role="complementary">
  37. {{ page.sidebar_second }}
  38. </aside>{# /.layout-sidebar-second #}
  39. {% endif %}
  40. {% if page.page_bottom %}
  41. <footer role="contentinfo">
  42. {{ page.page_bottom }}
  43. </footer>
  44. {% endif %}
  45. </div>{# /.layout-container #}