templates/posts/posts_categories.html.twig line 1

Open in your IDE?
  1.         <div class="widget-body">
  2.             <ul>
  3.                 {% for term in collection %}
  4.                 <li>
  5.                     <a href="{{ path(term[0].route.getRouteName()) }}"><span><i class="fas fa-angle-double-right"></i>{{ term[0].getName() }}</span><span>{{ term['contentCount'] }}</span></a>
  6.                 </li>
  7.                 {% endfor %}
  8.             </ul>
  9.         </div>