21 lines
No EOL
568 B
HTML
21 lines
No EOL
568 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>
|
|
<h1>{{recipe.title}}</h1>
|
|
{% for part in recipe.parts %}
|
|
<h2>Ingredients</h2>
|
|
{% for ing in part.ingredients %}
|
|
<li>{{ing.amount}} {{ing.unit.name}} {{ ing.name }}</li>
|
|
{% endfor %}
|
|
<h2>Steps</h2>
|
|
{% for step in part.steps %}
|
|
<li>{{ step }}</li>
|
|
{% endfor %}
|
|
{% endfor %}
|
|
</body>
|
|
</html> |