layout--base--onecol.html.twig in Layout Builder Base 8
Default theme implementation to display a one-column layout.
Available variables:
- content: The content for this layout.
- attributes: HTML attributes for the layout <div>.
File
modules/layout_builder_base_library/layouts/onecol/layout--base--onecol.html.twigView source
- {#
- /**
- * @file
- * Default theme implementation to display a one-column layout.
- *
- * Available variables:
- * - content: The content for this layout.
- * - attributes: HTML attributes for the layout <div>.
- *
- * @ingroup themeable
- */
- #}
- {%
- set classes = [
- 'layout',
- 'layout--onecol',
- ]
- %}
- {% if content %}
- <div{{attributes.addClass(classes)}}>
- <div class="layout-content">
- <div {{ region_attributes.content.addClass('layout__region', 'layout__region--content') }}>
- {{ content.content }}
- </div>
- </div>
- </div>
- {% endif %}