You are here

bootstrap-3-3-3-3.html.twig in Bootstrap Layouts 8.3

<div {{ attributes.addClass('row') }} >
  {{ title_suffix.contextual_links }}
  {% if content.far_left %}
  <div class="col-sm-3">
    {{ content.far_left }}
  </div>
  {% endif %}
  {% if content.mid_left %}
  <div class="col-sm-3">
    {{ content.mid_left }}
  </div>
  {% endif %}

  {% if content.mid_right %}
  <div class="col-sm-3">
    {{ content.mid_right }}
  </div>
  {% endif %}

  {% if content.far_right %}
  <div class="col-sm-3">
    {{ content.far_right }}
  </div>
  {% endif %}
</div>

File

templates/four-columns/bootstrap-3-3-3-3/bootstrap-3-3-3-3.html.twig
View source
  1. <div {{ attributes.addClass('row') }} >
  2. {{ title_suffix.contextual_links }}
  3. {% if content.far_left %}
  4. <div class="col-sm-3">
  5. {{ content.far_left }}
  6. </div>
  7. {% endif %}
  8. {% if content.mid_left %}
  9. <div class="col-sm-3">
  10. {{ content.mid_left }}
  11. </div>
  12. {% endif %}
  13. {% if content.mid_right %}
  14. <div class="col-sm-3">
  15. {{ content.mid_right }}
  16. </div>
  17. {% endif %}
  18. {% if content.far_right %}
  19. <div class="col-sm-3">
  20. {{ content.far_right }}
  21. </div>
  22. {% endif %}
  23. </div>