bootstrap_five_layouts-1.0.x-dev/templates/5.0.0/bs-1col.html.twig
templates/5.0.0/bs-1col.html.twig
{#
/**
* @file
* Bootstrap Five Layouts: 1 Column Layout
*
* Available variables:
* - content: The content for this layout.
* - attributes: HTML attributes for the layout element.
* - region_attributes: HTML attributes for the region elements.
* - build_classes: String of classes for the outer container div (set in BootstrapFiveLayoutsBase).
* - row_classes: String of classes for the row div (set in BootstrapFiveLayoutsBase).
* - column_classes: Array of classes for each column div (set in BootstrapFiveLayoutsBase).
*
* @ingroup themeable
*/
#}
{% if decor is not empty %}
<div{{ decor.addClass('bsfl-decor-wrapper') }}>
{% endif %}
<div{{ container_attributes }}>
<{{ wrapper }}{{ attributes.addClass('row') }}>
{{ title_suffix.contextual_links }}
<{{ column.wrapper }}{{ column.attributes }}>
{{ column.content }}
</{{ column.wrapper }}>
</{{ wrapper }}>
</div>
{% if decor is not empty %}
</div>
{% endif %}
