{{ recipe.name }}

Rating: ⭐ {{ recipe.rating }}

{% if recipe.description %}

Description:

{{ recipe.description }}

{% endif %} {% if recipe.minutes %}

Time:

{{ recipe.minutes }} minutes

{% endif %} {% if recipe.ingredients %}

Ingredients:

    {% for item in recipe.ingredients.strip("[]").split(',') %}
  • {{ item.strip(" '\"") }}
  • {% endfor %}
{% endif %} {% if recipe.steps %}

Steps:

    {% for step in recipe.steps %}
  1. {{ step }}
  2. {% endfor %}
{% else %}

No steps available.

{% endif %} ← Back to results