layout--twocol.html.twig

Same filename in this branch
  1. 9 core/themes/stable/templates/layout/layout--twocol.html.twig
  2. 9 core/modules/layout_discovery/layouts/twocol/layout--twocol.html.twig
Same filename in other branches
  1. 8.9.x core/themes/stable/templates/layout/layout--twocol.html.twig
  2. 8.9.x core/modules/layout_discovery/layouts/twocol/layout--twocol.html.twig
  3. 10 core/themes/stable9/layouts/layout_discovery/twocol/layout--twocol.html.twig
  4. 10 core/modules/layout_discovery/layouts/twocol/layout--twocol.html.twig
  5. 11.x core/themes/stable9/layouts/layout_discovery/twocol/layout--twocol.html.twig
  6. 11.x core/modules/layout_discovery/layouts/twocol/layout--twocol.html.twig

Theme override to display a two-column layout.

Available variables:

  • in_preview: Whether the plugin is being rendered in preview mode.
  • 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/stable9/layouts/layout_discovery/twocol/layout--twocol.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Theme override to display a two-column layout.
  5. *
  6. * Available variables:
  7. * - in_preview: Whether the plugin is being rendered in preview mode.
  8. * - content: The content for this layout.
  9. * - attributes: HTML attributes for the layout <div>.
  10. */
  11. #}
  12. {%
  13. set classes = [
  14. 'layout',
  15. 'layout--twocol',
  16. ]
  17. %}
  18. {% if content %}
  19. <div{{ attributes.addClass(classes) }}>
  20. {% if content.top %}
  21. <div {{ region_attributes.top.addClass('layout__region', 'layout__region--top') }}>
  22. {{ content.top }}
  23. </div>
  24. {% endif %}
  25. {% if content.first %}
  26. <div {{ region_attributes.first.addClass('layout__region', 'layout__region--first') }}>
  27. {{ content.first }}
  28. </div>
  29. {% endif %}
  30. {% if content.second %}
  31. <div {{ region_attributes.second.addClass('layout__region', 'layout__region--second') }}>
  32. {{ content.second }}
  33. </div>
  34. {% endif %}
  35. {% if content.bottom %}
  36. <div {{ region_attributes.bottom.addClass('layout__region', 'layout__region--bottom') }}>
  37. {{ content.bottom }}
  38. </div>
  39. {% endif %}
  40. </div>
  41. {% endif %}

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