layout--threecol-section.html.twig 854 B

1234567891011121314151617181920212223242526272829303132333435
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a three-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. {% if content %}
  14. <div{{ attributes.addClass(classes) }}>
  15. {% if content.first %}
  16. <div {{ region_attributes.first.addClass('layout__region', 'layout__region--first') }}>
  17. {{ content.first }}
  18. </div>
  19. {% endif %}
  20. {% if content.second %}
  21. <div {{ region_attributes.second.addClass('layout__region', 'layout__region--second') }}>
  22. {{ content.second }}
  23. </div>
  24. {% endif %}
  25. {% if content.third %}
  26. <div {{ region_attributes.third.addClass('layout__region', 'layout__region--third') }}>
  27. {{ content.third }}
  28. </div>
  29. {% endif %}
  30. </div>
  31. {% endif %}