{% extends 'template.html.twig' %} {% block title %}Mon Site Démo_product_detail{% endblock %} {% block body %} {% include "nav.html.twig" %}
Nos Produits

{{ product.name }}

{{ product.price }} €

{% if product.stock > 0 %}
{% else %} {% endif %}

{{ product.description|raw }}

{% if product.productImages|length > 0 %} {% for image in product.productImages %}
Product Image
{% endfor %} {% else %}
Default Cover Image
{% endif %}
Main Product Image
{% include "footer.html.twig" %} {% endblock %}