Help please, my head broke already. I have a few projects in the site. Displayed on a '/sites' in a list. Each project has its own category: 'categorysites', in the head of the module page with categories and has the approximate form:
{% set categories = taxonomy.taxonomy['categorysite'] %}
<div class="tags">{{ page.title }}:</div>
{% for categorysite, items in categories %}
<a class="link-category-sites" href="{{ page.parent.url }}/category{{ config.system.param_sep }},{{ categorysite }}">{{ categorysite }} (<span>{{ items|length }}</span>)</a>
{% endfor %}
The names of the categories, the number in parentheses, it works, but when you click on a link, display the selected category does not take place, all projects are displayed initially. What could be the problem?
Taxonomy in a blog on this site works fine.
Sorry for my english, I hope everything is clear.
Thank