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}
{i + 1}. {capitalizeFirstChar(ingredient)}
{/each}
Nutrition:
{#each recipe.Nutrition as nutrition, i}
{NUTRITION_NAMES[i]}: {nutrition}
{/each}
Steps:
{#each recipe.Steps as step, i}
{i + 1}. {step.length > 2 ? capitalizeFirstChar(step.substr(1, step.length - 2)) : ''}
{/each}