From 0e1fb2dedbc0f86add0f60f889111a11b78a8250 Mon Sep 17 00:00:00 2001 From: Max Value Date: Sun, 11 May 2025 18:19:50 +0100 Subject: [PATCH 1/1] Initial commit --- index.html | 12 ++++++++++++ sous.py | 7 +++++++ src/straight-white.toml | 9 +++++++++ style.css | 0 templates/template.html | 12 ++++++++++++ templates/template.tex | 0 6 files changed, 40 insertions(+) create mode 100644 index.html create mode 100755 sous.py create mode 100644 src/straight-white.toml create mode 100644 style.css create mode 100644 templates/template.html create mode 100644 templates/template.tex diff --git a/index.html b/index.html new file mode 100644 index 0000000..4af7662 --- /dev/null +++ b/index.html @@ -0,0 +1,12 @@ + + + + + + + +
+
+ + + diff --git a/sous.py b/sous.py new file mode 100755 index 0000000..af0c21e --- /dev/null +++ b/sous.py @@ -0,0 +1,7 @@ +#! /bin/python +import tomllib + +with open("recipes/straight-white.toml", "rb") as f: + recipe = tomllib.load(f) + +print(recipe) diff --git a/src/straight-white.toml b/src/straight-white.toml new file mode 100644 index 0000000..e0c8c35 --- /dev/null +++ b/src/straight-white.toml @@ -0,0 +1,9 @@ +[information] +title = "Straight white yeasted loaf" + +[ingredients] +white-flour = 90 +wholemeal-flour = 10 +water = 65 +yeast = 1 +salt = 1.5 diff --git a/style.css b/style.css new file mode 100644 index 0000000..e69de29 diff --git a/templates/template.html b/templates/template.html new file mode 100644 index 0000000..4af7662 --- /dev/null +++ b/templates/template.html @@ -0,0 +1,12 @@ + + + + + + + +
+
+ + + diff --git a/templates/template.tex b/templates/template.tex new file mode 100644 index 0000000..e69de29 -- 2.39.2