{% extends 'base.html.twig' %} {% block title %}Notre Carte - Le Reflex{% endblock %} {% block body %}

Notre Carte des Pizzas

{% for pizza in pizzas %}
{% if pizza.imageFilename %}
{{ pizza.name }}
{% endif %}

{{ pizza.name }}

{{ pizza.price|number_format(2, '.', ',') }} €

{{ pizza.description|raw }}

{% if pizza.toppings|length > 0 %}
{% endif %}
Total: {{ pizza.price|number_format(2, ',', ' ') }} €
{% endfor %}
{% endblock %}