templates/default/components/organisms/background-container/background-container.html.twig line 1

Open in your IDE?
  1. {% set class = backgroundColor %}
  2. {% set autoFullSize = ['gradient-white-grey', 'gradient-grey-white', 'gradient-grey-white-grey'] %}
  3. {% if (fullSize is defined and fullSize) or backgroundColor in autoFullSize %}
  4. {% set class = class ~ ' full-size' %}
  5. {% endif %}
  6. {% if noTopSpacing is defined and noTopSpacing %}
  7. {% set class = class ~ ' no-top-spacing' %}
  8. {% endif %}
  9. <div class="background-container {{ class }}">
  10. {% include 'components/organisms/storyblok/storyblok.html.twig' with {
  11. 'componentData': content
  12. }%}
  13. </div>