comfy-recipes/templates/recipe.html

24 lines
No EOL
642 B
HTML

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