14 lines
No EOL
369 B
HTML
14 lines
No EOL
369 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Recipes</title>
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/water.css@2/out/water.css">
|
|
<meta charset="utf-8">
|
|
</head>
|
|
<body>
|
|
<h1>Recipes</h1>
|
|
{% for recipe in recipes %}
|
|
<li><a href="{{ recipe.outpath }}">{{ recipe.title }}</a></li>
|
|
{% endfor %}
|
|
</body>
|
|
</html> |