templates/women/category/category.twig line 1

  1. {% extends 'women/base/base_women.twig' %}
  2. {% block head %}
  3.     {# {{ encore_entry_link_tags('app_product') }} #}
  4.     {# {% include 'front_end/product/styles.html.twig' %} #}
  5.     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
  6.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  7.     <meta name="viewport" content="width=device-width,initial-scale=1">
  8.     <meta name="description" content="multikart">
  9.     <meta name="keywords" content="multikart">
  10.     <meta name="author" content="multikart">
  11.     <link rel="icon" href="{{ asset('assets/images/favicon/1.png') }}" type="image/x-icon">
  12.     <link rel="shortcut icon" href="{{ asset('assets/images/favicon/1.png') }}" type="image/x-icon">
  13.     <title>SELECTWEARS</title>
  14.     <!--Google font-->
  15.     <link href="https://fonts.googleapis.com/css?family=Lato:300,400,700,900" rel="stylesheet">
  16.     <link rel="preconnect" href="https://fonts.gstatic.com">
  17.     <link href="https://fonts.googleapis.com/css2?family=Yellowtail&display=swap" rel="stylesheet">
  18.     <!-- Icons -->
  19.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/vendors/font-awesome.css') }}">
  20.     <!--Slick slider css-->
  21.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/vendors/slick.css') }}">
  22.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/vendors/slick-theme.css')}}">
  23.     <!-- Animate icon -->
  24.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/vendors/animate.css') }}">
  25.     <!-- Themify icon -->
  26.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/vendors/themify-icons.css') }}">
  27.     <!-- Bootstrap css -->
  28.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/vendors/bootstrap.css') }}">
  29.     <!-- Theme css -->
  30.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/style.css') }}">
  31.         <!-- Price range icon -->
  32.     <link rel="stylesheet" type="text/css" href="{{ asset('assets/css/vendors/price-range.css') }}">
  33.     <style>
  34.         .list-group-item a {
  35.             color: unset !important;
  36.         }
  37.         .variant-wrap{
  38.             text-align: left !important;
  39.             right: unset !important;
  40.             width: -webkit-fill-available;
  41.             float: right;
  42.             background: #e3dfdf;
  43.             bottom: 0 !important;
  44.         }
  45.         .image-swatch li img{
  46.             margin-right: unset !important;
  47.         }
  48.         .heart-wrap {
  49.             top: 0px !important;
  50.             bottom: unset !important;
  51.         }
  52.         {# .v-swatch:hover{
  53.             border: 1px solid black;
  54.         } #}
  55.     </style>
  56. {% endblock %}
  57.  {% block main %}
  58.     <input id="category_id" name="category_id" type="text" value={{ categoryId }} class="d-none"/>
  59.     <!-- section start -->
  60.     <section class="section-b-space ratio_asos">
  61.         <div class="collection-wrapper">
  62.             <div class="container">
  63.                 <div class="row">
  64.                     <div class="collection-content col">
  65.                         <div class="page-main-content d-flex">
  66.                                     <div class="col-sm-3 col-3 collection-filter">
  67.                                         <div class="">
  68.                                             <nav aria-label="breadcrumb" class="theme-breadcrumb">
  69.                                                 <ol class="breadcrumb">
  70.                                                 {% if category.parentCategory %}
  71.                                                     {% if category.parentCategory.parentCategory %}
  72.                                                         <li class="breadcrumb-item">
  73.                                                             <a href="{{ path('app_category',{id: category.parentCategory.parentCategory.id}) }}">
  74.                                                                 {{category.parentCategory.parentCategory.name }}
  75.                                                             </a>
  76.                                                         </li>
  77.                                                     {% endif %}
  78.                                                 
  79.                                                     <li class="breadcrumb-item">
  80.                                                         <a href="{{ path('app_category',{id:category.parentCategory.id }) }}">
  81.                                                             {{category.parentCategory.name }}
  82.                                                         </a>
  83.                                                     </li>
  84.                                                 {% endif %}
  85.                                                     <li class="breadcrumb-item active" aria-current="page">{{category.name}}</li>
  86.                                                 </ol>
  87.                                             </nav>
  88.                                         </div>
  89.                                         {# <h3>{{category.name}}</h3> #}
  90.                                         {% if category.childCategory %}
  91.                                             <ul class="list-group text-uppercase">
  92.                                             {% for category in category.childCategory %}
  93.                                                 <li class="list-group-item border-0">
  94.                                                 <a href="{{ path('app_category',{id:category.id}) }}">{{category.name}}</a>
  95.                                                 </li>
  96.                                             {% endfor %}
  97.                                             </ul>
  98.                                         {% endif %}
  99.                                         <!-- side-bar colleps block stat -->
  100.                                         {# <div class="collection-filter-block">
  101.                                             <!-- brand filter start -->
  102.                                             <div class="collection-mobile-back"><span class="filter-back"><i class="fa fa-angle-left"
  103.                                                         aria-hidden="true"></i> back</span></div>
  104.                                             <div class="collection-collapse-block open">
  105.                                                 <h3 class="collapse-block-title">brand</h3>
  106.                                                 <div class="collection-collapse-block-content">
  107.                                                     <div class="collection-brand-filter">
  108.                                                         <div class="form-check collection-filter-checkbox">
  109.                                                             <input type="checkbox" class="form-check-input" id="zara">
  110.                                                             <label class="form-check-label" for="zara">zara</label>
  111.                                                         </div>
  112.                                                         <div class="form-check collection-filter-checkbox">
  113.                                                             <input type="checkbox" class="form-check-input" id="vera-moda">
  114.                                                             <label class="form-check-label" for="vera-moda">vera-moda</label>
  115.                                                         </div>
  116.                                                         <div class="form-check collection-filter-checkbox">
  117.                                                             <input type="checkbox" class="form-check-input" id="forever-21">
  118.                                                             <label class="form-check-label" for="forever-21">forever-21</label>
  119.                                                         </div>
  120.                                                         <div class="form-check collection-filter-checkbox">
  121.                                                             <input type="checkbox" class="form-check-input" id="roadster">
  122.                                                             <label class="form-check-label" for="roadster">roadster</label>
  123.                                                         </div>
  124.                                                         <div class="form-check collection-filter-checkbox">
  125.                                                             <input type="checkbox" class="form-check-input" id="only">
  126.                                                             <label class="form-check-label" for="only">only</label>
  127.                                                         </div>
  128.                                                     </div>
  129.                                                 </div>
  130.                                             </div>
  131.                                             <!-- color filter start here -->
  132.                                             <div class="collection-collapse-block open">
  133.                                                 <h3 class="collapse-block-title">colors</h3>
  134.                                                 <div class="collection-collapse-block-content">
  135.                                                     <div class="color-selector">
  136.                                                         <ul>
  137.                                                             <li class="color-1 active"></li>
  138.                                                             <li class="color-2"></li>
  139.                                                             <li class="color-3"></li>
  140.                                                             <li class="color-4"></li>
  141.                                                             <li class="color-5"></li>
  142.                                                             <li class="color-6"></li>
  143.                                                             <li class="color-7"></li>
  144.                                                         </ul>
  145.                                                     </div>
  146.                                                 </div>
  147.                                             </div>
  148.                                             <!-- size filter start here -->
  149.                                             <div class="collection-collapse-block border-0 open">
  150.                                                 <h3 class="collapse-block-title">size</h3>
  151.                                                 <div class="collection-collapse-block-content">
  152.                                                     <div class="collection-brand-filter">
  153.                                                         <div class="form-check collection-filter-checkbox">
  154.                                                             <input type="checkbox" class="form-check-input" id="hundred">
  155.                                                             <label class="form-check-label" for="hundred">s</label>
  156.                                                         </div>
  157.                                                         <div class="form-check collection-filter-checkbox">
  158.                                                             <input type="checkbox" class="form-check-input" id="twohundred">
  159.                                                             <label class="form-check-label" for="twohundred">m</label>
  160.                                                         </div>
  161.                                                         <div class="form-check collection-filter-checkbox">
  162.                                                             <input type="checkbox" class="form-check-input" id="threehundred">
  163.                                                             <label class="form-check-label" for="threehundred">l</label>
  164.                                                         </div>
  165.                                                         <div class="form-check collection-filter-checkbox">
  166.                                                             <input type="checkbox" class="form-check-input" id="fourhundred">
  167.                                                             <label class="form-check-label" for="fourhundred">xl</label>
  168.                                                         </div>
  169.                                                     </div>
  170.                                                 </div>
  171.                                             </div>
  172.                                             <!-- price filter start here -->
  173.                                             <div class="collection-collapse-block border-0 open">
  174.                                                 <h3 class="collapse-block-title">price</h3>
  175.                                                 <div class="collection-collapse-block-content">
  176.                                                     <div class="wrapper mt-3">
  177.                                                         <div class="range-slider">
  178.                                                             <input type="text" class="js-range-slider" value="" />
  179.                                                         </div>
  180.                                                     </div>
  181.                                                 </div>
  182.                                             </div>
  183.                                         </div> #}
  184.                                         <!-- side-bar banner end here -->
  185.                                     </div>
  186.                             <div id="category_content" class="collection-product-wrapper col-9 col-small-12">
  187.                                     <div class="product-top-filter">
  188.                                         <div class="row">
  189.                                             <div class="col-12">
  190.                                                 <div class="product-filter-content">
  191.                                                     <div class="search-count">
  192.                                                         <h5><span id="totalFound">{{ totalOfProducts }} </span>{{ 'Products found' | trans({},'templates') }}</h5>
  193.                                                     </div>
  194.                                                     {# <div class="collection-view">
  195.                                                         <ul>
  196.                                                             <li><i class="fa fa-th grid-layout-view"></i></li>
  197.                                                             <li><i class="fa fa-list-ul list-layout-view"></i></li>
  198.                                                         </ul>
  199.                                                     </div> #}
  200.                                                     {# <div class="collection-grid-view">
  201.                                                         <ul>
  202.                                                             <li><img src="../assets/images/icon/2.png" alt=""
  203.                                                                     class="product-2-layout-view"></li>
  204.                                                             <li><img src="../assets/images/icon/3.png" alt=""
  205.                                                                     class="product-3-layout-view"></li>
  206.                                                             <li><img src="../assets/images/icon/4.png" alt=""
  207.                                                                     class="product-4-layout-view"></li>
  208.                                                             <li><img src="../assets/images/icon/6.png" alt=""
  209.                                                                     class="product-6-layout-view"></li>
  210.                                                         </ul>
  211.                                                     </div> #}
  212.                                                     <div class="product-page-per-view">
  213.                                                         <select id="color-filter-category">
  214.                                                             <option value="">{{ 'Color' | trans({},'templates') }}</option>
  215.                                                             {% for color in colors %}
  216.                                                             <option value="{{ color.value }}">{{ color.value}}</option>
  217.                                                             {% endfor %}
  218.                                                         </select>
  219.                                                     </div>
  220.                                                     <div class="product-page-filter">
  221.                                                         <select id="size-filter-category">
  222.                                                             <option value="">{{ 'Size' | trans({},'templates') }}</option>
  223.                                                             {% for size in sizes %}
  224.                                                                 <option value="{{ size.id }}">{{ size.value }}</option>
  225.                                                             {% endfor %}
  226.                                                         </select>
  227.                                                     </div>
  228.                                                     <div class="product-page-filter">
  229.                                                         <div class="collection-collapse-block-content">
  230.                                                             <div class="wrapper mt-3">
  231.                                                                 <div class="range-slider">
  232.                                                                     <input id="price-filter-category" type="text" class="js-range-slider" value=""
  233.                                                                             data-type="double"
  234.                                                                             data-min="{{ priceRange.min_price }}"
  235.                                                                             data-max="{{ priceRange.max_price }}"
  236.                                                                             data-step="0.5"
  237.                                                                             {# data-from="{{ priceRange.min_price }}"
  238.                                                                             data-to="{{ priceRange.max_price }}" #}
  239.                                                                     />
  240.                                                                 </div>
  241.                                                             </div>
  242.                                                         </div>
  243.                                                         {# <select>
  244.                                                             <option value="">Price</option>
  245.                                                             <option value="Low to High">Low</option>
  246.                                                             <option value="Low to High">High</option>
  247.                                                         </select> #}
  248.                                                     </div>
  249.                                                 </div>
  250.                                             </div>
  251.                                         </div>
  252.                                     </div>
  253.                                 <div id="category_main" >
  254.                                     {% if products %}
  255.                                     <div class="product-wrapper-grid">
  256.                                         <div class="row margin-res">
  257.                                         
  258.                                             <div class="row">
  259.                                                 {% for product in products %}
  260.                                                 {# {{ product.firstVariantId() }} #}
  261.                                                     <div class="col-xl-4 col-6 col-grid-box">
  262.                                                         <div class="product-box">
  263.                                                             <div class="img-wrapper">
  264.                                                                 <div  class="front">
  265.                                                                     <a id="front-{{product.id}}" href="{{ path('app_product_page',{'pid': product.id, 'vid': product.firstVariantId(),gender: 'women' }) }}"><img  src="{{ product.mainImage }}"
  266.                                                                             class="img-fluid blur-up lazyload bg-img" alt=""></a>
  267.                                                                 </div>
  268.                                                                 <div  class="back">
  269.                                                                     <a id="back-{{product.id}}" href="{{ path('app_product_page',{'pid': product.id, 'vid': product.firstVariantId(),gender: 'women' }) }}"><img src="{{ product.getSecondImage() }}"
  270.                                                                             class="img-fluid blur-up lazyload bg-img" alt=""></a>
  271.                                                                 </div>
  272.                                                                 {% if product.variants|length > 1 %}
  273.                                                                     
  274.                                                                 <div class="cart-info cart-wrap variant-wrap">
  275.                                                                     <ul class="image-swatch">
  276.                                                                         {% for variant in product.variants|slice(0,4) %}
  277.                                                                         <li  class="v-swatch">
  278.                                                                             <a href="{{path('app_product_page',{'pid': product.id, 'vid': variant.id,gender: 'women'})}}">
  279.                                                                                 <img onmouseleave="category.oldImg('{{variant.product.id}}',this)" onmouseenter="category.swatchImg('{{variant.product.id}}',this)" src="{{ variant.mainImage }}" alt="" class="img-fluid blur-up lazyload">
  280.                                                                             </a>
  281.                                                                         </li>
  282.                                                                         {% endfor %}
  283.                                                                         {% if product.variants|length > 4 %}
  284.                                                                         {% set more = product.variants|length - 4 %}
  285.                                                                         <li  class="v-swatch v-swatch-more">
  286.                                                                             <a class="text-dark" href="{{ path('app_product_page',{'pid': product.id, 'vid': product.firstVariantId(),gender: 'women'}) }}">
  287.                                                                                 + {{ more }}
  288.                                                                             </a>
  289.                                                                         </li>
  290.                                                                         {% endif %}
  291.                                                                         {# <li><a href="#"><img src="../assets/images/fashion/pro/m-002.jpg" alt=""
  292.                                                                         class="img-fluid blur-up lazyload"></a></li>
  293.                                                                         <li><a href="#"><img src="../assets/images/fashion/pro/m-003.jpg" alt=""
  294.                                                                         class="img-fluid blur-up lazyload"></a></li> #}
  295.                                                                     </ul>
  296.                                                                 </div>
  297.                                                                 {% endif %}
  298.                                                                 <div class="cart-info cart-wrap heart-wrap">
  299.                                                                     <a  href="javascript:void(0)" 
  300.                                                                         title="{{ 'Add to Wishlist' | trans({},'templates') }}"
  301.                                                                         data-p-id={{ product.id }}
  302.                                                                         data-p-name={{ product.name }}
  303.                                                                         data-p-price={{ product.firstVariantPrice() }}
  304.                                                                         data-p-image={{ product.mainImage }}
  305.                                                                         data-p-api={{ product.apiId }}
  306.                                                                         onclick="addToFavoris(this)"
  307.                                                                     >
  308.                                                                     
  309.                                                                         {% if product.id in app.session.get('wishlist') %}
  310.                                                                             <i class='fa-solid fa-heart' style='color: #ff0000;'></i>
  311.                                                                         {% else %}
  312.                                                                             <i class='fa-regular fa-heart'></i>
  313.                                                                         {% endif %} 
  314.                                                                     </a>                
  315.                                                                 </div>
  316.                                                             </div>
  317.                                                             <div class="product-detail">
  318.                                                                 <div>
  319.                                                                     <a href="product-page(no-sidebar).html">
  320.                                                                         <h6>{{product.name}}</h6>
  321.                                                                     </a>
  322.                                                                     <p>{{product.description}}</p>
  323.                                                                     <h4>{{product.firstVariantPrice()}} EUR</h4>
  324.                                                                 </div>
  325.                                                             </div>
  326.                                                         </div>
  327.                                                     </div>
  328.                                                 {% endfor %}
  329.                                             </div>
  330.                                         </div>
  331.                                     </div>
  332.                                     {% else %}
  333.                                         <!-- section start -->
  334.                                         <section class="p-0">
  335.                                             <div class="container">
  336.                                                 <div class="row">
  337.                                                     <div class="col-sm-12">
  338.                                                         <div class="error-section">
  339.                                                             {# <h1>404</h1> #}
  340.                                                             <h2>{{ 'NO PRODUCTS FOUND IN THIS CATEGORY' | trans({},'templates') }}</h2>
  341.                                                             <a href="/women" class="btn btn-solid">{{ 'back to home' | trans({},'templates') }}</a>
  342.                                                         </div>
  343.                                                     </div>
  344.                                                 </div>
  345.                                             </div>
  346.                                         </section>
  347.                                         <!-- Section ends -->
  348.                                     {% endif %}
  349.                                     <div class="knp-pagination">
  350.                                             {{ knp_pagination_render(products,'pagination.twig') }} 
  351.                                     </div>
  352.                                 </div>
  353.                             </div>
  354.                             
  355.                         </div>
  356.                     </div>
  357.                 </div>
  358.             </div>
  359.         </div>
  360.     </section>
  361.     <!-- section End -->
  362.     <!-- tap to top start -->
  363.     <div class="tap-top">
  364.         <div><i class="fa fa-angle-double-up"></i></div>
  365.     </div>
  366.     <!-- tap to top end -->
  367. {% endblock %}
  368.     {% block js %}
  369.     
  370.     <!-- latest jquery-->
  371.     <script src="{{ asset('assets/js/jquery-3.3.1.min.js') }}"></script>
  372.     <!-- menu js-->
  373.     <script src="{{ asset('assets/js/menu.js') }}"></script>
  374.     <!-- lazyload js-->
  375.     <script src="{{ asset('assets/js/lazysizes.min.js') }}"></script>
  376.     <!-- slick js-->
  377.     <script src="{{ asset('assets/js/slick.js') }}"></script>
  378.     <!-- Bootstrap js-->
  379.     <script src="{{ asset('assets/js/bootstrap.bundle.min.js') }}"></script>
  380.     <!-- Bootstrap Notification js-->
  381.     <script src="{{ asset('assets/js/bootstrap-notify.min.js') }}"></script>
  382.     <!-- price range js -->
  383.     <script src="{{ asset('assets/js/price-range.js') }}"></script>
  384.     <!-- Theme js-->
  385.     <script src="{{ asset('assets/js/theme-setting.js') }}"></script>
  386.     <script src="{{ asset('assets/js/script.js') }}"></script>
  387.     <script>
  388.         function openSearch() {
  389.             document.getElementById("search-overlay").style.display = "block";
  390.         }
  391.         function closeSearch() {
  392.             document.getElementById("search-overlay").style.display = "none";
  393.         }
  394.     </script>
  395.     {# <script src="{{ asset('assets/js/collection.js') }}"></script> #}
  396.     <script src="{{ asset('assets/js/modules.js') }}"></script>
  397.     {% endblock %}