comfy-recipes/templates/index.html
2023-11-01 19:36:58 +01:00

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>