install-page.html.twig
Same filename in this branch
Same filename in other branches
- 8.9.x core/themes/seven/templates/install-page.html.twig
- 8.9.x core/themes/claro/templates/install-page.html.twig
- 8.9.x core/themes/stable/templates/layout/install-page.html.twig
- 8.9.x core/modules/system/templates/install-page.html.twig
- 10 core/themes/stable9/templates/layout/install-page.html.twig
- 10 core/themes/claro/templates/install-page.html.twig
- 10 core/modules/system/templates/install-page.html.twig
- 11.x core/themes/stable9/templates/layout/install-page.html.twig
- 11.x core/themes/claro/templates/install-page.html.twig
- 11.x core/modules/system/templates/install-page.html.twig
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.
See also
template_preprocess_install_page()
File
-
core/
themes/ claro/ templates/ install-page.html.twig
View source
- {#
- /**
- * @file
- * 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.
- *
- * @see template_preprocess_install_page()
- */
- #}
- <div class="layout-container">
-
- <header role="banner">
- {% if site_name %}
- <h1 class="site-name">
- {{ site_name }}
- {% if site_version %}
- <span class="site-version">{{ site_version }}</span>
- {% endif %}
- </h1>
- {% 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 %}
- <h2 class="heading-c">{{ title }}</h2>
- {% endif %}
- {{ page.highlighted }}
- {{ page.content }}
- </main>
-
- {% if page.sidebar_second %}
- <aside class="layout-sidebar-second" role="complementary">
- {{ page.sidebar_second }}
- </aside>{# /.layout-sidebar-second #}
- {% endif %}
-
- {% 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.