{% for itemGlobal in data %}
<div class="bloc_besoin_product_sous_content templates_page_category_sous_content" id="templates_page_category{{ itemGlobal.category.id }}" >
<div class="container">
<div class="col-lg-12 text-center">
<h2>{{itemGlobal.category.name | trans({}, "productTranslate")}}</h2>
</div>
</div>
<div class="position-relative templates_page_bloc_global">
<div class="product_slick_bloc01 row templates_page_bloc">
{% for item in itemGlobal.products %}
<div class="text-center templates_page_a_img" style="">
<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;">
<img style="" src="{{ asset('imageSite/'~item.fileProduct)}}">
</a>
<h3>
<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="#">
<span class="besoin_product_a_span1">{{item.titre | trans({}, "productTranslate")}}</span>
</a>
</h3>
</div>
{% endfor %}
{% if itemGlobal.category.productAttribute %}
<div class="">
<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 }}" >
{{ 'Voir plus' | trans({}, "productTranslate") }}
</a>
</div>
{% endif %}
</div>
</div>
</div>
{% endfor %}