dsfr4drupal-1.x-dev/layouts/layout_discovery/twocol/layout--twocol.html.twig
layouts/layout_discovery/twocol/layout--twocol.html.twig
{% if content %}
<div{{ attributes.addClass('fr-grid-row', 'fr-grid-row--gutters') }}>
{% if content.top %}
<div {{ region_attributes.top.addClass('layout__region', 'layout__region--top', 'fr-col-12') }}>
{{ content.top }}
</div>
{% endif %}
{% if content.first %}
<div {{ region_attributes.first.addClass('layout__region', 'layout__region--first', 'fr-col-12', 'fr-col-lg-6') }}>
{{ content.first }}
</div>
{% endif %}
{% if content.second %}
<div {{ region_attributes.second.addClass('layout__region', 'layout__region--second', 'fr-col-12', 'fr-col-lg-6') }}>
{{ content.second }}
</div>
{% endif %}
{% if content.bottom %}
<div {{ region_attributes.bottom.addClass('layout__region', 'layout__region--bottom', 'fr-col-12') }}>
{{ content.bottom }}
</div>
{% endif %}
</div>
{% endif %}
