off-canvas-page-wrapper.html.twig
Same filename in this branch
Same filename in other branches
- 9 core/themes/stable9/templates/content/off-canvas-page-wrapper.html.twig
- 9 core/themes/claro/templates/off-canvas-page-wrapper.html.twig
- 9 core/themes/stable/templates/content/off-canvas-page-wrapper.html.twig
- 9 core/modules/system/templates/off-canvas-page-wrapper.html.twig
- 8.9.x core/themes/claro/templates/off-canvas-page-wrapper.html.twig
- 8.9.x core/themes/stable/templates/content/off-canvas-page-wrapper.html.twig
- 8.9.x core/modules/system/templates/off-canvas-page-wrapper.html.twig
- 11.x core/themes/stable9/templates/content/off-canvas-page-wrapper.html.twig
- 11.x core/themes/claro/templates/off-canvas-page-wrapper.html.twig
- 11.x core/modules/system/templates/off-canvas-page-wrapper.html.twig
Theme override for a page wrapper.
For consistent wrapping to {{ page }} render in all themes. The "data-off-canvas-main-canvas" attribute is required by the off-canvas dialog. This is used by the core/drupal.dialog.off_canvas library to select the "main canvas" page element as opposed to the "off canvas" which is the dialog itself. The "main canvas" element must be resized according to the width of the "off canvas" dialog so that no portion of the "main canvas" is obstructed by the off-canvas dialog. The off-canvas dialog can vary in width when opened and can be resized by the user. The "data-off-canvas-main-canvas" attribute cannot be removed without breaking the off-canvas dialog functionality.
Available variables:
- children: Contains the child elements of the page.
File
-
core/
themes/ stable9/ templates/ content/ off-canvas-page-wrapper.html.twig
View source
- {#
- /**
- * @file
- * Theme override for a page wrapper.
- *
- * For consistent wrapping to {{ page }} render in all themes. The
- * "data-off-canvas-main-canvas" attribute is required by the off-canvas dialog.
- * This is used by the core/drupal.dialog.off_canvas library to select the
- * "main canvas" page element as opposed to the "off canvas" which is the dialog
- * itself. The "main canvas" element must be resized according to the width of
- * the "off canvas" dialog so that no portion of the "main canvas" is obstructed
- * by the off-canvas dialog. The off-canvas dialog can vary in width when opened
- * and can be resized by the user. The "data-off-canvas-main-canvas" attribute
- * cannot be removed without breaking the off-canvas dialog functionality.
- *
- * Available variables:
- * - children: Contains the child elements of the page.
- */
- #}
- {% if children %}
- <div class="dialog-off-canvas-main-canvas" data-off-canvas-main-canvas>
- {{ children }}
- </div>
- {% endif %}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.