--- /dev/null
+<!DOCTYPE html>
+<html lang="">
+ <head>
+ <meta charset="utf-8">
+ <link rel="stylesheet" href="style.css">
+ <title>Bread</title>
+ </head>
+ <body>
+ <main>
+ <h1>Bread</h1>
+ <p>
+ Collection of recipes with <a href="pages/percentage.html">bakers percentage</a> and example weights. Recipes are stored in TOML format and periodically compiled to this website and the accompanying printouts.
+ </p>
+ <h2>Recipes</h2>
+ <h3>All recipes</h3>
+ <ul>
+ {% for recipe in recipes %}
+ <li><a href="recipes/{{ recipe.recipe.html }}">{{ recipe.recipe.information.title }}</a></li>
+ {% endfor %}
+ </ul>
+ <h3>Keywords</h3>
+ {% for word, list in keywords.items() %}
+ <h4>{{ word }}</h4>
+ <ul>
+ {% for item in list %}
+ <li><a href="recipes/{{ item.1 }}">{{ item.0 }}</a></li>
+ {% endfor %}
+ </ul>
+ {% endfor %}
+ <p>Last compiled at <a href="https://git.ozva.co.uk/?p=bread;a=commit;h=HEAD">{{ time }}</a></p>
+ </main>
+ </body>
+</html>