This repository has been archived on 2025-01-19. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
drupalcampbristol/core/modules/outside_in/templates/outside-in-page-wrapper.html.twig

21 lines
419 B
Twig

{#
/**
* @file
* Default theme implementation for a page wrapper.
*
* For consistent wrapping to {{ page }} render in all themes.
*
* Available variables:
* - children: Contains the child elements of the page.
*
* @ingroup themeable
*/
#}
{% if children %}
<div id="main-canvas-wrapper">
<div id="main-canvas">
{{ children }}
</div>
</div>
<div class="offcanvas-lining"></div>
{% endif %}