layout--fourcol-section.html.twig

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

Default theme implementation for a four-column 25%-25%-25%-25% 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>.

File

core/modules/layout_builder/layouts/fourcol_section/layout--fourcol-section.html.twig

View source
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a four-column 25%-25%-25%-25% 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. * @ingroup themeable
  12. */
  13. #}
  14. {%
  15. set classes = [
  16. 'layout',
  17. 'layout--fourcol-section',
  18. ]
  19. %}
  20. {% if content %}
  21. <div{{ attributes.addClass(classes) }}>
  22. {% if content.first %}
  23. <div {{ region_attributes.first.addClass('layout__region', 'layout__region--first') }}>
  24. {{ content.first }}
  25. </div>
  26. {% endif %}
  27. {% if content.second %}
  28. <div {{ region_attributes.second.addClass('layout__region', 'layout__region--second') }}>
  29. {{ content.second }}
  30. </div>
  31. {% endif %}
  32. {% if content.third %}
  33. <div {{ region_attributes.third.addClass('layout__region', 'layout__region--third') }}>
  34. {{ content.third }}
  35. </div>
  36. {% endif %}
  37. {% if content.fourth %}
  38. <div {{ region_attributes.fourth.addClass('layout__region', 'layout__region--fourth') }}>
  39. {{ content.fourth }}
  40. </div>
  41. {% endif %}
  42. </div>
  43. {% endif %}

Related topics


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