You are here

layout--base--customizable.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/customizable/layout--base--customizable.html.twig
View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation to display a one-column layout.
  5. *
  6. * Available variables:
  7. * - content: The content for this layout.
  8. * - attributes: HTML attributes for the layout <div>.
  9. *
  10. * @ingroup themeable
  11. */
  12. #}
  13. {%
  14. set classes = [
  15. 'layout',
  16. 'layout--customizable',
  17. ]
  18. %}
  19. {% if content %}
  20. <div{{attributes.addClass(classes)}}>
  21. <div {{ region_attributes.content.addClass('layout-content', 'layout__region', 'layout__region--content') }}>
  22. {{ content.content }}
  23. </div>
  24. </div>
  25. {% endif %}