templates/blog/categories.html.twig line 1

Open in your IDE?
  1. {% for category, label in categories %}
  2.     <div class="col-6"><a href="{{ path('show_posts_by_category', { 'slug': category })}}">{{ label }}</a></div>
  3. {% endfor %}