templates/Slivki/offers/category_list.html.twig line 1

Open in your IDE?
  1. <div id="categories-list" class="{{ smallCity is defined and smallCity ? ' small-city' }}{{ topLevelCategoryIDList|length == 1 ? ' one-category-city' }}">
  2.     {% for categoryID, categoryBox in categoryBoxList %}
  3.         {% set categoryBanner = app.user and app.user.hasRole(constant('\\Slivki\\Entity\\UserGroup::ROLE_ADS_FREE')) ? ''
  4.             : getCategoryBanner(categoryID) %}
  5.         {% set categoryBox =  categoryBox|replace({'<div id="category-banner-placeholder" style="display:none"></div>': categoryBanner}) %}
  6.         {{ categoryBox|raw }}
  7.     {% endfor %}
  8. </div>
  9. <div id="mainPagePromoTextPush"></div>
  10. {% if isMobileDevice() %}
  11.     {% include 'Slivki/mobile_link_block.html.twig' %}
  12. {% endif %}