You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

15 lines
617 B

{% if labels is defined and labels is not empty %}
<section class="sidebar-top-topics" aria-label="{{ 'sidebar.topics'|trans }}">
<h2 class="sidebar-top-topics__title">{{ 'sidebar.topics'|trans }}</h2>
<ul class="sidebar-top-topics__list" role="list">
{% for label in labels %}
<li>
<a
class="topic-badge sidebar-top-topics__link"
href="{{ path('topic', { topic: label }) }}"
>{{ label }}</a>
</li>
{% endfor %}
</ul>
</section>
{% endif %}