layout--twocol-section.html.twig

Same filename in this branch
  1. 8.9.x core/modules/layout_builder/layouts/twocol_section/layout--twocol-section.html.twig
Same filename and directory in other branches
  1. 9 core/themes/stable9/layouts/layout_builder/twocol_section/layout--twocol-section.html.twig
  2. 9 core/themes/stable/layouts/twocol_section/layout--twocol-section.html.twig
  3. 9 core/modules/layout_builder/layouts/twocol_section/layout--twocol-section.html.twig
  4. 10 core/themes/stable9/layouts/layout_builder/twocol_section/layout--twocol-section.html.twig
  5. 10 core/modules/layout_builder/layouts/twocol_section/layout--twocol-section.html.twig
  6. 11.x core/themes/stable9/layouts/layout_builder/twocol_section/layout--twocol-section.html.twig
  7. 11.x core/modules/layout_builder/layouts/twocol_section/layout--twocol-section.html.twig

Theme override to display a two-column layout.

Available variables:

  • content: The content for this layout.
  • attributes: HTML attributes for the layout <div>.

File

core/themes/stable/layouts/twocol_section/layout--twocol-section.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override to display a two-column layout.
  5. *
  6. * Available variables:
  7. * - content: The content for this layout.
  8. * - attributes: HTML attributes for the layout <div>.
  9. */
  10. #}
  11. {% if content %}
  12. <div{{ attributes }}>
  13. {% if content.first %}
  14. <div {{ region_attributes.first.addClass('layout__region', 'layout__region--first') }}>
  15. {{ content.first }}
  16. </div>
  17. {% endif %}
  18. {% if content.second %}
  19. <div {{ region_attributes.second.addClass('layout__region', 'layout__region--second') }}>
  20. {{ content.second }}
  21. </div>
  22. {% endif %}
  23. </div>
  24. {% endif %}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.