templates/front/page-templates-20000/content.html.twig line 1

Open in your IDE?
  1. {% for itemGlobal in data %}
  2.     <div class="bloc_besoin_product_sous_content templates_page_category_sous_content"   id="templates_page_category{{ itemGlobal.category.id }}" >
  3.         <div class="container">
  4.             <div class="col-lg-12 text-center">
  5.                 <h2>{{itemGlobal.category.name | trans({}, "productTranslate")}}</h2>
  6.             </div>
  7.         </div>
  8.         <div class="position-relative templates_page_bloc_global">
  9.             <div class="product_slick_bloc01 row templates_page_bloc">
  10.                 {% for item in itemGlobal.products %}
  11.                     <div class="text-center templates_page_a_img" style="">
  12.                         <a data-id="{{ item.id }}" data-id-select="{% if item.product.id is defined %}{{ item.product.id }}{% else %}{{ item.id }}{% endif %}" data-designTypeSideBarCrello="{{ item.designTypeSideBarCrello }}"  data-customDesignType="" data-designType="" data-templateId="{{ item.designTemplateId }}"    data-category="articles"  data-name="{{ item.titre }}" class="selectTag2Google  crelloBtnOpenBesoinProduct" href="#" style="position: relative;">
  13.                             <img style="" src="{{ asset('imageSite/'~item.fileProduct)}}">
  14.                         </a>
  15.                         <h3>
  16.                             <a data-id="{{ item.id }}" data-id-select="{% if item.product.id is defined %}{{ item.product.id }}{% else %}{{ item.id }}{% endif %}" data-designTypeSideBarCrello="{{ item.designTypeSideBarCrello }}"  data-customDesignType="" data-designType=""  data-templateId="{{ item.designTemplateId }}"  data-category="articles"  data-name="{{ item.titre }}" class="selectTag2Google crelloBtnOpenBesoinProduct" href="#">
  17.                                 <span class="besoin_product_a_span1">{{item.titre | trans({}, "productTranslate")}}</span>
  18.                             </a>
  19.                         </h3>
  20.                     </div>
  21.                 {% endfor %}
  22.                 {% if itemGlobal.category.productAttribute %}
  23.                     <div class="">
  24.                         <a href="#" class="btnPlusTemplatesPage" data-id="{{itemGlobal.category.id}}"  data-designTypeSideBarCrello="{{ itemGlobal.category.designTypeSideBarCrello }}"  data-customDesignType="{{ itemGlobal.category.designTypeCustomCrello }}" data-designType="{{ itemGlobal.category.designTypeCrello }}" data-cat="{{ itemGlobal.category.id }}" >
  25.                             {{ 'Voir plus' | trans({}, "productTranslate") }}
  26.                         </a>
  27.                     </div>
  28.                 {% endif %}
  29.             </div>
  30.         </div>
  31.     </div>
  32. {% endfor %}