{% if data.recipe %}

{{data.recipe.recipe_name}}

{{data.recipe.description}}

{% if data.recipe.belongsToUser %}
{% endif %}

You Will Need:

{%for line in data.ingredients%}
{{line}}
{%endfor%}

How to Make It:

{% for step in data.recipe.steps %}

{{step}}

{% endfor %} {% else %}

Nothing to show or an error occurred

{% endif %}