templates/product/single_product.html.twig line 1

Open in your IDE?
  1. <div class="product-item text-center">
  2.                         <a href="{{ path('app_product', { 'slug' : product.slug }) }}"><img src="/uploads/{{ product.illustration }}" alt="{{ product.name }}" class="figure-img img-fluid img-thumbnail max-width:200px rounded-circle object-fit-contain" style="width: 250px;height: 250px;" ></a>
  3.                         <a class="btn btn-block bg-info text-light fw-bold" href="{{ path('app_product', { 'slug' : product.slug }) }}">{{ product.name }}</a>
  4.                         <span class="product-subtitle">{{ product.subtitle }}</span>
  5.                     </div>