templates/web/Default/features.html.twig line 1

Open in your IDE?
  1. {% if feature.name == 'Tag List' %}
  2.     <h2>{{ feature.title }}</h2>
  3.     <ul class="list-unstyled">
  4.         {% for tag, meta in tags %}
  5.             <li>
  6.                 <a href="{{ path("blog_tag", {"tag": meta.slug}) }}" class="">{{ tag }} <small>({{ meta.articles }})</small></a>
  7.             </li>
  8.         {% endfor %}
  9.     </ul>
  10. {% endif  %}