Tags


{#if recipe.Tags.length != 0}
    {#each recipe.Tags as tag, i}
  • #{tag}
  • {/each}
{/if}

{recipe.Name}

Prep Time: {recipe.PrepMinutes} minutes


Description:
{recipe.Description}
Ingredients:
    {#each recipe.Ingredients as ingredient, i}
  1. {i + 1}. {capitalizeFirstChar(ingredient)}
  2. {/each}
Nutrition:
    {#each recipe.Nutrition as nutrition, i}
  • {NUTRITION_NAMES[i]}: {nutrition}
  • {/each}
Steps:
    {#each recipe.Steps as step, i}
  1. {i + 1}. {step.length > 2 ? capitalizeFirstChar(step.substr(1, step.length - 2)) : ''}
  2. {/each}