<% if(context === "new" || context === "edit") { %>
<% if(context === "new") { %> Adding New Recipe: <% } else { %> Editing Recipe: <% } %>
<% if(context === "new") { %> <% } else { %> <% } %>
<% } else { %>

Viewing Recipe:

Title: <%= title %>

Description: <%= description %>

Items Required:
Steps:
    <% _.each(steps, function(step) { %>
  1. <%= step %>
  2. <% }) %>
<% } %>