templates/home/blocks/tools_list.html.twig line 1

Open in your IDE?
  1. <section class="tools-list">
  2.     <div class="container row p-0 justify-content-center">
  3.         {% for subBlock in data.sub_blocks %}
  4.             {% set templateView = subBlock.template %}
  5.             {% include 'home/blocks/' ~ templateView with {'data': subBlock} %}
  6.         {% endfor %}
  7.     </div>
  8. </section>