{% 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 repository.getCategories({"featured": 1, "notSlug": "other", "sort": "c.featuredOrder", "order": "ASC"}).getQuery().getResult() %}
{% include "Global/category-card.html.twig" with {category: category} %}
{% endfor %}
{% endblock %}