initial commit

This commit is contained in:
Emi Vasilek 2023-11-01 19:36:58 +01:00
commit f6d33add17
3 changed files with 194 additions and 0 deletions

14
templates/index.html Normal file
View file

@ -0,0 +1,14 @@
<!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>