layout--threecol-25-50-25.html.twig 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. {#
  2. /**
  3. * @file
  4. * Default theme implementation for a three column layout.
  5. *
  6. * This template provides a three column 25%-50%-25% display layout, with
  7. * additional areas for the top and the bottom.
  8. *
  9. * Available variables:
  10. * - content: The content for this layout.
  11. * - attributes: HTML attributes for the layout <div>.
  12. *
  13. * @ingroup themeable
  14. */
  15. #}
  16. {%
  17. set classes = [
  18. 'layout',
  19. 'layout--threecol-25-50-25',
  20. ]
  21. %}
  22. {% if content %}
  23. <div{{ attributes.addClass(classes) }}>
  24. {% if content.top %}
  25. <div {{ region_attributes.top.addClass('layout__region', 'layout__region--top') }}>
  26. {{content.top}}
  27. <div class='top_top'>
  28. {{ content.top_left }}
  29. <div class='top_right'>
  30. {{content.top_right}}
  31. </div>
  32. </div>
  33. <div class='top_bottom'>
  34. {{content.top_bottom}}
  35. </div>
  36. </div>
  37. {% endif %}
  38. {% if content.first %}
  39. <div {{ region_attributes.first.addClass('layout__region', 'layout__region--first') }}>
  40. {{ content.first }}
  41. </div>
  42. {% endif %}
  43. {% if content.second %}
  44. <div {{ region_attributes.second.addClass('layout__region', 'layout__region--second') }}>
  45. {{ content.second }}
  46. </div>
  47. {% endif %}
  48. {% if content.third %}
  49. <div {{ region_attributes.third.addClass('layout__region', 'layout__region--third') }}>
  50. {{ content.third }}
  51. </div>
  52. {% endif %}
  53. {% if content.bottom %}
  54. <div {{ region_attributes.bottom.addClass('layout__region', 'layout__region--bottom') }}>
  55. {{ content.bottom }}
  56. </div>
  57. {% endif %}
  58. </div>
  59. {% endif %}