Security update for Core, with self-updated composer
[yaffs-website] / web / core / modules / layout_discovery / layouts / twocol / layout--twocol.html.twig
index b416cbd471ef2f8c238ddb38864bc05d0327c67a..262c657f919ec0225db6edd97a72c3ce09ce6f69 100644 (file)
 {% if content %}
   <div{{ attributes.addClass(classes) }}>
     {% if content.top %}
-      <div class="layout__region layout__region--top">
+      <div {{ region_attributes.top.addClass('layout__region', 'layout__region--top') }}>
         {{ content.top }}
       </div>
     {% endif %}
 
     {% if content.first %}
-      <div class="layout__region layout__region--first">
+      <div {{ region_attributes.first.addClass('layout__region', 'layout__region--first') }}>
         {{ content.first }}
       </div>
     {% endif %}
 
     {% if content.second %}
-      <div class="layout__region layout__region--second">
+      <div {{ region_attributes.second.addClass('layout__region', 'layout__region--second') }}>
         {{ content.second }}
       </div>
     {% endif %}
 
     {% if content.bottom %}
-      <div class="layout__region layout__region--bottom">
+      <div {{ region_attributes.bottom.addClass('layout__region', 'layout__region--bottom') }}>
         {{ content.bottom }}
       </div>
     {% endif %}