templates/Front/Event/categories.html.twig line 1

Open in your IDE?
  1. {% extends "Global/layout.html.twig" %}
  2. {% set pagetitle = 'Event categories'|trans %}
  3. {% block title %}{{pagetitle}}{% endblock %}
  4. {% block content %}
  5.     {% set navigation = [{"current" : (pagetitle)}] %}
  6.     {% include "Global/navigation.html.twig" with navigation %}
  7.     <section class="section-content padding-y bg-white">
  8.         <div class="{{ services.getSetting("app_layout") }}">
  9.             <div class="row">
  10.                 {% for category in services.getCategories({"sort": "translations.name", "order": "DESC"}).getQuery().getResult() %}
  11.                     <div class="col-sm-6 col-md-4">
  12.                         {% include "Global/category-card.html.twig" with {category: category} %}
  13.                     </div>
  14.                 {% endfor %}
  15.             </div>
  16.         </div>
  17.     </section>
  18. {% endblock %}