{% extends "_base.html" %} {% block title %}{{ recipe.name }} ยท Cauldron{% endblock %} {% block content %}
// recipes / {{ recipe.slug }}

{{ recipe.name }}

{% if recipe.description %}
{{ recipe.description }}
{% endif %}

meta

{% if recipe.totalTime %}
total
{{ recipe.totalTime }}
{% endif %} {% if recipe.prepTime %}
prep
{{ recipe.prepTime }}
{% endif %} {% if recipe.cookTime %}
cook
{{ recipe.cookTime }}
{% endif %} {% if recipe.recipeYield %}
yield
{{ recipe.recipeYield }}
{% endif %} {% if recipe.recipeServings %}
servings
{{ recipe.recipeServings }}
{% endif %}

ingredients

{{ (recipe.recipeIngredient or []) | length }} items
{% if recipe.recipeIngredient %} {% else %}

no ingredients listed.

{% endif %}

instructions

{% if recipe.recipeInstructions %}
    {% for step in recipe.recipeInstructions %}
  1. {{ step.text }}
  2. {% endfor %}
{% else %}

no instructions listed.

{% endif %}
โ† back to grimoire view in mealie โ†—
{% endblock %}