From dc246a52b5a08b06569807fd77a62e90bc71b0bd Mon Sep 17 00:00:00 2001 From: Max Value Date: Mon, 12 May 2025 20:45:08 +0100 Subject: [PATCH] Added homepage index template --- .gitignore | 2 +- templates/index.html | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+), 1 deletion(-) create mode 100644 templates/index.html diff --git a/.gitignore b/.gitignore index 596f14d..d1c2013 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,3 @@ build/* recipes/* -index.html +/index.html diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..f1a142f --- /dev/null +++ b/templates/index.html @@ -0,0 +1,33 @@ + + + + + + Bread + + +
+

Bread

+

+ Collection of recipes with bakers percentage and example weights. Recipes are stored in TOML format and periodically compiled to this website and the accompanying printouts. +

+

Recipes

+

All recipes

+ +

Keywords

+ {% for word, list in keywords.items() %} +

{{ word }}

+ + {% endfor %} +

Last compiled at {{ time }}

+
+ + -- 2.39.2