<%- include('../partials/header') %> <%- include('../partials/nav') %>
<%- include('../partials/categories') %>

<%= recipe.title %>, by <%= recAuthor.bio.name %>

recipe <% if(usr) { %> <% if(account.favorites.includes(recipe._id)) { %>
<% } else { %>
<% } %> <% } %>
Ingredients:
    <% ingridients.map(i => { %>
  • <%= i %>
  • <% }) %>

<%= recipe.category %>

Instructions (<%= recipe.steps.length %> steps)

<% recipe.steps.map(s => { %>
Step <%= s.number %>:

<%= s.step %>

<% }) %>
<%- include('../partials/popular') %>
<%- include('../partials/magicCats') %> <%- include('../partials/magicPops') %> <%- include('../partials/footer') %>