initial commit

This commit is contained in:
Emi Vasilek 2023-11-01 19:36:58 +01:00
commit f6d33add17
3 changed files with 194 additions and 0 deletions

19
templates/recipe.html Normal file
View file

@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>{{title}}</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
<meta charset="utf-8">
</head>
<body>
<h1>{{title}}</h1>
<h2>Ingredients</h2>
{% for ing in ingredients %}
<li>{{ing.amount}} {{ing.unit}} {{ ing.name }}</li>
{% endfor %}
<h2>Steps</h2>
{% for step in steps %}
<li>{{ step }}</li>
{% endfor %}
</body>
</html>