Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
web
/
vhosts
/
www.humitest.fr
/
htdocs
/
templates
/
front
/
blocks
/
/srv/data/web/vhosts/www.humitest.fr/htdocs/templates/front/blocks/product_cardNewProduct.html.twig
{% for row in newProducts|batch(4) %} <div class="row mb-5"> {% for product in row %} <div class="col-md-3"> <figure class="snip1423" > <div class="card-header"> {% if product.isNewProduct == 1 %} {# <img src="{{ asset('build/images/nouveauProduit2.png')}}" style="left:-45px;top:-40px;height:65px!important;float:left!important"> #} <img src="{{ asset('build/images/nouveauProduit3.png')}}" alt="{{ product.title }}" style="right:-6px;top:-6px;height:105px!important;float:right!important;position:absolute; z-inde:3;"> {% endif %} {% set laGamme = product.gammeProduct.name %} {% if laGamme == "Bâtiment-Immobilier" %} Bâtiment <br> {{product.category}} {% else %} {{ product.gammeProduct.name}} <br> {{product.category}} {% endif %} </div> {% if product.images|length > 0 %} <img src="{{ vich_uploader_asset(product.images.0, 'imageFile') | imagine_filter('thumb') }}" alt="{{product.title}}" class="img-fluid mt-2" > {% else %} <img src="{{ asset('build/images/default-image.jpg') | imagine_filter('thumb') }}" alt="{{product.title}}"> {% endif %} <figcaption> {% set title = product.title|length > 50 ? product.title|slice(0, 50) ~ '...' : product.title %} <h5 class="text-uppercase"><b> {{title|striptags|raw}}</b></h5> {% set content = product.shortDesc|striptags|length > 100 ? product.shortDesc|striptags|slice(0, 100) ~ '...' : product.shortDesc %} <p>{{content|raw}}</p> <div class="price"> </div> </figcaption> <a href="{{ path('product', {'id': product.id, 'title':product.title|my_url_encode}) }}"></a> </figure> <a href="{{ path('product', {'id': product.id, 'title':product.title|my_url_encode}) }}"> <center><h3 style="margin-top:-40px!important; position:relative!important;z-index:1!important;"> <span class="shadow border border-white text-center badge btn-red text-ligth pl-4 pr-4 pt-2 pb-2 border " style="border-radius:50px; border-color: white!important;border-style:solid!important;border-width: 5px!important;"> <small class="text-white"> {{product.price }}€ HT</small> </span></h3></center></a> </div> {% endfor %} </div> {% endfor %}