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
|
|
@ -57,6 +57,12 @@ description: Welcome to my website! I write about tech, politics, food, and hobb
|
|||
{% if recipe.data.newest.data.description %}
|
||||
<p>{{ recipe.data.newest.data.description }}</p>
|
||||
{% endif %}
|
||||
{% if recipe.data.newest.data.amount %}
|
||||
<p class="recipe-amount">Amount: {{ recipe.data.newest.data.amount }}</p>
|
||||
{% endif %}
|
||||
{% if recipe.data.newest.data.cookingTime %}
|
||||
<p class="recipe-cooking-time">Cooking Time: {{ recipe.data.newest.data.cookingTime }}</p>
|
||||
{% endif %}
|
||||
</a>
|
||||
</li>
|
||||
{% endif %}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue