aboutsummaryrefslogtreecommitdiff
path: root/templates/pages/single-recipe.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/pages/single-recipe.html')
-rw-r--r--templates/pages/single-recipe.html29
1 files changed, 29 insertions, 0 deletions
diff --git a/templates/pages/single-recipe.html b/templates/pages/single-recipe.html
new file mode 100644
index 0000000..35c03c0
--- /dev/null
+++ b/templates/pages/single-recipe.html
@@ -0,0 +1,29 @@
+{% extends "base.html" %} {% block heading %} {{ single_recipe.title }} {%
+endblock %} {% block content %}
+<article>
+ <figure>
+ <img src="{{ single_recipe.image }}" alt="{{ single_recipe.title }}" />
+ <figcaption><a href="{{ single_recipe.url }}">Source</a></figcaption>
+ </figure>
+ <h2>Ingredients</h2>
+ <ul>
+ {% for ingredient in single_recipe.ingredients %}
+ <li>{{ ingredient }}</li>
+ {% endfor %}
+ </ul>
+ <h2>Instructions</h2>
+ <ul>
+ {% for instruction in single_recipe.instructions %}
+ <li>{{ instruction }}</li>
+ {% endfor %}
+ </ul>
+</article>
+<button
+ hx-delete="/recipes/delete/{{ single_recipe._id }}"
+ hx-target="#delete-message"
+ hx-swap="innerHTML"
+>
+ Delete recipe
+</button>
+<p id="delete-message"></p>
+{% endblock %}