templates/themes/theme/sectors/blocks.html.twig line 1

Open in your IDE?
  1. <section class="link-block">
  2.     <div class="row">
  3.       {% for sector in sectors %}
  4.         <div class="md:col-4 mb-6 lg:mb-0 flex flex-col">
  5.             <div class="link-block--item">
  6.                 <a href="{{ generatePath( app.request, sector.linkedPageId, {'sector_slug' : sector.slug } ) }}">
  7.                     {{ sector.iconClass|raw }}
  8.                     <h3>{{ sector.title }}</h3>
  9.                 </a>
  10.             </div>
  11.         </div>
  12.       {% endfor %}
  13.     </div>
  14. </section>