{data.name}
{#if data.images.length > 0}
1} class='double'>
{#each data.images as media}
{media.caption}
{/each}
{/if}
{data.recipe.baking.length} bei {data.recipe.baking.temperature} °C
{#if data.baking.mode}
{data.baking.mode}
{:else}
Ober-/Unterhitze
{/if}
data.preparation
data.total_time
data.portions
{#if data.ingredients}
Zutaten
{#each data.ingredients as list}
{#if list.name}
{list.name}
{/if}
{#each list.list as item}
- {item.amount} {item.unit} {item.ingredient_name}
{/each}
{/each}
{/if}
{#if data.instructions}
Zubereitung
{#each data.instructions as list}
{#if list.name}
{list.name}
{/if}
{#each list.steps as step}
- {step}
{/each}
{/each}
{/if}