layout--twocol.html.twig

Same filename in this branch
  1. 8.9.x core/modules/layout_discovery/layouts/twocol/layout--twocol.html.twig
Same filename in other branches
  1. 9 core/themes/stable9/layouts/layout_discovery/twocol/layout--twocol.html.twig
  2. 9 core/themes/stable/templates/layout/layout--twocol.html.twig
  3. 9 core/modules/layout_discovery/layouts/twocol/layout--twocol.html.twig
  4. 10 core/themes/stable9/layouts/layout_discovery/twocol/layout--twocol.html.twig
  5. 10 core/modules/layout_discovery/layouts/twocol/layout--twocol.html.twig
  6. 11.x core/themes/stable9/layouts/layout_discovery/twocol/layout--twocol.html.twig
  7. 11.x core/modules/layout_discovery/layouts/twocol/layout--twocol.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>.
2 theme calls to layout--twocol.html.twig
FieldLayoutBuilderTest::testBuildForm in core/modules/field_layout/tests/src/Unit/FieldLayoutBuilderTest.php
@covers ::buildForm @covers ::getFields
FieldLayoutBuilderTest::testBuildView in core/modules/field_layout/tests/src/Unit/FieldLayoutBuilderTest.php
@covers ::buildView @covers ::getFields

File

core/themes/stable/templates/layout/layout--twocol.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. {%
  12. set classes = [
  13. 'layout',
  14. 'layout--twocol',
  15. ]
  16. %}
  17. {% if content %}
  18. <div{{ attributes.addClass(classes) }}>
  19. {% if content.top %}
  20. <div {{ region_attributes.top.addClass('layout__region', 'layout__region--top') }}>
  21. {{ content.top }}
  22. </div>
  23. {% endif %}
  24. {% if content.first %}
  25. <div {{ region_attributes.first.addClass('layout__region', 'layout__region--first') }}>
  26. {{ content.first }}
  27. </div>
  28. {% endif %}
  29. {% if content.second %}
  30. <div {{ region_attributes.second.addClass('layout__region', 'layout__region--second') }}>
  31. {{ content.second }}
  32. </div>
  33. {% endif %}
  34. {% if content.bottom %}
  35. <div {{ region_attributes.bottom.addClass('layout__region', 'layout__region--bottom') }}>
  36. {{ content.bottom }}
  37. </div>
  38. {% endif %}
  39. </div>
  40. {% endif %}

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