templates/front/catalog/discount/list.html.twig line 1

Open in your IDE?
  1. {% if discountPages is defined and discountPages %}
  2. <aside>
  3. <nav class="tree">
  4. <a class="universe" href="{{ path('universe', {id:category.id, url: category.url}) }}"><- {% trans %}Toutes nos Promos{% endtrans %}</a>
  5. <ul class="discounts">
  6. {% for discountPage in discountPages %}
  7. <li {% if currentDiscountPage is defined and currentDiscountPage.id == discountPage.id %}class="current"{% endif %}><a href="{{ path('discount', {id:discountPage.id, url: discountPage.url}) }}">{{ discountPage.title | raw }}</a></li>
  8. {% endfor %}
  9. </ul>
  10. </nav>
  11. </aside>
  12. {% endif %}