From 08e46f9799574b530a901459a3430ba596a168fa Mon Sep 17 00:00:00 2001 From: Max Value Date: Tue, 13 May 2025 23:07:40 +0100 Subject: [PATCH] Added kaiser rolls + links section where provided + html lang en --- src/kaiser-rolls.toml | 24 ++++++++++++++++++++++++ templates/index.html | 2 +- templates/template.html | 20 ++++++++++++++++---- 3 files changed, 41 insertions(+), 5 deletions(-) create mode 100644 src/kaiser-rolls.toml diff --git a/src/kaiser-rolls.toml b/src/kaiser-rolls.toml new file mode 100644 index 0000000..95bc3f5 --- /dev/null +++ b/src/kaiser-rolls.toml @@ -0,0 +1,24 @@ +[information] +title = "Kaiser rolls" +description = "Chainbaker kaiser rolls." + +keywords = ["white", "yeasted", "brioche"] + +notes = """ +This recipe is from Chainbaker, with only a small ajustment on the yeast. Each of these rolls should weigh around 110g. There is a specific way to plait these which I will try to describe: Roll the balls out into a length of around 20cm, tie a knot into the dough and pass the two loose ends back through the loop created so the ends are hidden. Can be brushed with milk or some other glaze and sprinkled with poppy seeds. +This is a brioche, so easily overheated, use cold milk or cool the flour off beforehand. +""" + +links = [ + "https://www.chainbaker.com/kaiser-rolls/", + "https://www.youtube.com/watch?v=nyfi0RMa1sY" + ] + +[ingredients] +white-flour = 100 +milk = 44 +egg = 20 +softened-butter = 8 +sugar = 4 +salt = 2 +yeast = 1 diff --git a/templates/index.html b/templates/index.html index 4535d10..b562626 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1,5 +1,5 @@ - + diff --git a/templates/template.html b/templates/template.html index ac544b5..dc7a5fd 100644 --- a/templates/template.html +++ b/templates/template.html @@ -1,5 +1,5 @@ - + @@ -12,8 +12,10 @@ [History] - [PDF]

{{ recipe.information.description }}

+

Notes

{{ recipe.information.notes|replace("\n", "
") }} +

Ingredients

@@ -50,10 +52,20 @@ {% endfor %}

- Percentage total: {{ recipe.total }}%
- Values have been rounded where the error would not be significant (p < 0.05). + Percentage total: {{ recipe.total }}%
+ Values have been rounded where the error would not be significant (p < 0.05).

-

Last compiled at {{ time }}

+ + {% if recipe.information.links is defined %} +

Links

+ + {% endif %} + +

Last compiled at {{ time }}

-- 2.39.2