{% extends 'base.html.twig' %}
{% block title %}Nos produits - Le Boutique Belge{% endblock %}
{% block content %}
<h1>Nos produits</h1>
<div class="row product-container">
{% for product in products %}
<div class="col-md-4">
<div class="product-item text-center">
<a href="{{ path('produit', { 'slug' : product.slug } ) }}"><img src="/uploads/{{ product.illustration }}" alt="{{ product.name }}" class="img-fluid"></a>
<h5>{{ product.name }}</h5>
<span class="product-subtitle">{{ product.subtitle }}</span>
<span class="product-price">{{ (product.price / 100) | number_format(2, ',', '.') }}</span>
<p class="mt-2">
<div class="text-center">
<a href="{{ path('add_to_wishlist', { 'id': product.id}) }}" class="btn btn-outline-warning">
<i class="fas fa-heart"></i>
</a>
<a href="{{ path('add_to_cart', { 'id': product.id}) }}" class="btn btn-outline-primary">
<i class="fas fa-cart-plus"></i>
</a>
</div>
</p>
</div>
</div>
{% endfor %}
</div>
{% endblock %}