templates/blog/months.html.twig line 1

Open in your IDE?
  1. {% for year, mths in months %}
  2.     {% for month, meta in mths %}
  3.     <a class="badge badge-secondary" href="{{ path('show_posts_by_month', { 'year': year, 'month': month })}}">{{ meta.label }}</a>
  4.     {% endfor %}
  5. {% endfor %}