templates/includes/blocks.html.twig line 1

Open in your IDE?
  1. {% if content.blocks|default([])|length %}
  2.     <div class="blocks">
  3.         {% for block in content.blocks %}
  4.             <div class="blocks__item">
  5.                 {% include 'includes/blocks/' ~ block.type ~ '.html.twig' with {
  6.                     content: block,
  7.                     view: view.blocks[loop.index0],
  8.                 } only %}
  9.             </div>
  10.         {% endfor %}
  11.     </div>
  12. {% endif %}