initial commit
This commit is contained in:
commit
f6d33add17
3 changed files with 194 additions and 0 deletions
19
templates/recipe.html
Normal file
19
templates/recipe.html
Normal 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>
|
Loading…
Add table
Add a link
Reference in a new issue