{% if recipe.category is defined and recipe.category.title is defined and recipe.category.title is not empty %} {{ recipe.category.title }} {% endif %}

{{ recipe.title }}

{% if recipe.groceryListIngredients is not empty %}
    {% for groceryListIngredient in recipe.groceryListIngredients %}
  • {{ include('front/partials/grocerylist_recipe_ingredient_card.html.twig') }}
  • {% endfor %}
{% endif %}