templates/front/catList.html.twig line 1

Open in your IDE?
  1. {% set chaineCategory = getCategories(1)|first %}
  2. {% set translate = translate|default %}
  3. {% if chaineCategory %}
  4.     <section class=" position-relative zi-9">
  5.         <div class="container container-cat text-center bgc-15683A {{ translate ? "uuccfk" : "umfnrb" }} position-relative">
  6.             <img src="{{ asset('assets/img/catmid.svg') }}" alt="Facomia"
  7.                  class="wi-50 position-absolute t-0 b-0 my-auto l--15 " data-aos="fade-right" data-aos-duration="700" data-aos-delay="400"/>
  8.             <div class="row align-items-center rgbnbd">
  9.                 <h2 class="col-lg-3 mat-30 mab-0-lg mab-20 mat-0-lg vprkae mab-0" data-aos="fade-right" data-aos-duration="700" >
  10.                     {{ chaineCategory.title }}
  11.                 </h2>
  12.                 {% for key, subCategory in getSubCategories(chaineCategory.id)|slice(0, 3) %}
  13.                     <div class="col-lg-3 col-4 position-relative pax-0" data-aos="fade-in" data-aos-duration="700" data-aos-delay="200">
  14.                         {% if not loop.last %}
  15.                             <div class="position-absolute t-0 b-0 my-auto r--1 he-70 bgc-white wi-2 he-70 skew"></div>
  16.                         {% endif %}
  17.                         <div data-link class="pointer pay-45-lg pay-20-md pay-30 zjiujc">
  18.                             <div class="mtegcj pax-30-lg pax-20 pax-10">
  19.                                 <div class="jrgsfp">
  20.                                     {% if subCategory.subCategoryFileName %}
  21.                                         <img src="{{ asset(vich_uploader_asset(subCategory, 'subCategoryFile')) }}"
  22.                                              alt="{{ subCategory.title }}" class="he-45"/>
  23.                                     {% endif %}
  24.                                 </div>
  25.                                 <h3 class="mab-0">
  26.                                     <a href="{{ path('front_products', {'catSlug':chaineCategory.slug, "subCatSlug":subCategory.slug}) }}"
  27.                                        class="olipsm may-5">
  28.                                         {{ subCategory.listingTitle }}
  29.                                     </a>
  30.                                 </h3>
  31.                                 <div class="rhaebo d-none d-sm-block">
  32.                                     {{ subCategory.intro|raw }}
  33.                                 </div>
  34.                             </div>
  35.                         </div>
  36.                     </div>
  37.                 {% endfor %}
  38.             </div>
  39.         </div>
  40.     </section>
  41. {% endif %}