Linux SRV-16 6.18.44-paas #1 SMP PREEMPT_DYNAMIC Thu Aug 13 10:08:12 UTC 2026 x86_64
/
srv
/
data
/
trash
/
vhost_www.bachtale.com_1719306535
/
htdocs
/
templates
/
front
/
product
/
/srv/data/trash/vhost_www.bachtale.com_1719306535/htdocs/templates/front/product/_card.html.twig
{% for row in products|batch(3) %} <div class="row align-items-stretch reveal"> {% for product in row %} <div class="col-lg-4 mb-lg-0"> <div class="card-body product mb-4 reveal-2"> <div class="card-image mb-4"> <a href="{{ path('product_read', {'category': product.category|my_url_encode, 'id': product.id, 'title':product.title|my_url_encode}) }}"> {% if product.images|length > 0 %} <img data-src="{{ vich_uploader_asset(product.images.0, 'imageFile') | imagine_filter('thumb') }}" alt="{{product.title}}" class="img-fluid lazy"> {% else %} <img data-src="{{ asset('build/images/default-image.jpg') | imagine_filter('thumb') }}" alt="{{product.title}}" class="img-fluid lazy"> {% endif %} </a> </div> <div class="card-text text-center"> {% set title = product.title|length > 50 ? product.title|slice(0, 50) ~ '...' : product.title %} <h3 class="text-center">{{title|striptags|raw}}</h3> <a href="{{ path('product_read', {'category': product.category|my_url_encode, 'id': product.id, 'title':product.title|my_url_encode}) }}" class="btn btn-default btn-block colored"> <i class="fas fa-eye"></i> Découvrir</a> </div> <br> </div> </div> {% endfor %} </div> {% endfor %}