{% extends "Global/layout.html.twig" %} {% set pagetitle = 'Event categories'|trans %} {% block title %}{{pagetitle}}{% endblock %} {% block content %} {% set navigation = [{"current" : (pagetitle)}] %} {% include "Global/navigation.html.twig" with navigation %}
{% for category in services.getCategories({"sort": "translations.name", "order": "DESC"}).getQuery().getResult() %}
{% include "Global/category-card.html.twig" with {category: category} %}
{% endfor %}
{% endblock %}