<%= recipe.title %>, by <%= recAuthor.bio.name %>
Ingredients:
-
<% ingridients.map(i => { %>
- <%= i %> <% }) %>
Instructions (<%= recipe.steps.length %> steps)
<% recipe.steps.map(s => { %>Step <%= s.number %>:
<%= s.step %>