
| Current Path : /var/www/html/rocksensor1/web/themes/contrib/bootstrap/components/container/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html/rocksensor1/web/themes/contrib/bootstrap/components/container/container.twig |
{% set classes = full_width ? 'full-width' : container ? 'container' : '' %}
{% set style = background_image ? 'background-image:url("' ~ background_image ~ '");' : '' %}
{% set style = background_color ? style ~ 'background-color:' ~ background_color ~ '");' : style %}
<section {{ attributes.addClass(classes).setAttribute('style', style) }}>
{% if full_width and container %}
<div class="container">
{% endif %}
{% block content %}{% endblock %}
{% if full_width and container %}
</div>
{% endif %}
</section>