feat: added amount and cooking time to recipes
This commit is contained in:
parent
8705f8cdee
commit
623893002c
3 changed files with 18 additions and 0 deletions
|
|
@ -8,6 +8,12 @@ layout: base.njk
|
|||
<span class="draft-badge">Draft</span>
|
||||
{% endif %}
|
||||
<p class="recipe-version">Version {{ recipeVersion }}</p>
|
||||
{% if amount %}
|
||||
<p class="recipe-amount">Amount: {{ amount }}</p>
|
||||
{% endif %}
|
||||
{% if cookingTime %}
|
||||
<p class="recipe-cooking-time">Cooking Time: {{ cookingTime }}</p>
|
||||
{% endif %}
|
||||
</header>
|
||||
|
||||
<div class="recipe-content">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue