19 lines
No EOL
485 B
HTML
19 lines
No EOL
485 B
HTML
<!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> |