You are here

bootstrap-2-10.html.twig in Bootstrap Layouts 8.3

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

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

File

templates/two-columns/bootstrap-2-10/bootstrap-2-10.html.twig
View source
  1. <div {{ attributes.addClass('row') }} >
  2. {{ title_suffix.contextual_links }}
  3. {% if content.sidebar_left %}
  4. <div class="col-sm-2">
  5. {{ content.sidebar_left }}
  6. </div>
  7. {% endif %}
  8. {% if content.sidebar_right %}
  9. <div class="col-sm-10">
  10. {{ content.sidebar_right }}
  11. </div>
  12. {% endif %}
  13. </div>