mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-12-08 19:35:14 -05:00
* fix settings * app info cleanup * bottom-bar experiment * remove dup key * type hints * add dependency * updated image with query parameters * read image options * add image minification * add image minification step * alt image routes * add image minification * set mobile bar to top Co-authored-by: hay-kot <hay-kot@pm.me>
24 lines
489 B
Markdown
24 lines
489 B
Markdown
|
|
|
|

|
|
|
|
# {{ recipe.name }}
|
|
{{ recipe.description }}
|
|
|
|
## Ingredients
|
|
{% for ingredient in recipe.recipeIngredient %}
|
|
- [ ] {{ ingredient }} {% endfor %}
|
|
|
|
## Instructions
|
|
{% for step in recipe.recipeInstructions %}
|
|
- [ ] {{ step.text }} {% endfor %}
|
|
|
|
{% for note in recipe.notes %}
|
|
**{{ note.title }}:** {{ note.text }}
|
|
{% endfor %}
|
|
|
|
---
|
|
|
|
Tags: {{ recipe.tags }}
|
|
Categories: {{ recipe.categories }}
|
|
Original URL: {{ recipe.orgURL }} |