{% extends 'base.html.twig' %} {% block title %}Mes recettes{% endblock %} {% block body %}
{# ── EN-TÊTE ── #}

Mes recettes {{ recipes|length }} recette{{ recipes|length > 1 ? 's' : '' }}

{# ── FILTRES CATÉGORIES ── #}
Toutes {% for category in categories %} {% if category.icon %}{% endif %} {{ category.name }} {% endfor %}
{# ── FILTRE INGRÉDIENTS ── #}
Filtrer par ingrédients
{% for name in ingredientNames %} {{ name }} {% endfor %}
{% if ingredientsRaw %} Effacer {% if searchMode == 'all' %}Tous présents{% else %}Au moins un{% endif %} : {% for name in ingredientNames %} {{ name }}{% if not loop.last %}, {% endif %} {% endfor %} {% endif %}
{# ── LISTE RECETTES ── #} {% if recipes is empty %}
🍽️
{% if ingredientsRaw %}

Aucune recette trouvée pour ces ingrédients.

Voir toutes les recettes {% else %}

Tu n'as pas encore de recette.

Ajouter ma première recette {% endif %}
{% else %}
{% for recipe in recipes %}
{% set cover = recipe.coverPhoto %} {% if cover %} {{ cover.altText }} {% else %}
🍽️
{% endif %} {# Badges catégories sur la photo #} {% if recipe.categories is not empty %}
{% for category in recipe.categories %} {% if category.icon %}{% endif %} {{ category.name }} {% endfor %}
{% endif %}
{{ recipe.title }}
{% if recipe.description %}

{{ recipe.description|slice(0, 90) }}{% if recipe.description|length > 90 %}…{% endif %}

{% endif %}
{% if recipe.difficulty == 'easy' %}Facile{% elseif recipe.difficulty == 'medium' %}Moyen{% else %}Difficile{% endif %} {{ recipe.totalTime }} min {{ recipe.servings }} pers.
Voir la recette {% if app.user == recipe.author %} {% endif %}
{% endfor %}
{% endif %} {% endblock %} {% block stylesheets %} {% endblock %} {% block javascripts %} {% endblock %}