]> OzVa Git service - bread/commitdiff
Added kaiser rolls
authorMax Value <greenwoodw50@gmail.com>
Tue, 13 May 2025 22:07:40 +0000 (23:07 +0100)
committerMax Value <greenwoodw50@gmail.com>
Tue, 13 May 2025 22:07:40 +0000 (23:07 +0100)
+ links section where provided
+ html lang en

src/kaiser-rolls.toml [new file with mode: 0644]
templates/index.html
templates/template.html

diff --git a/src/kaiser-rolls.toml b/src/kaiser-rolls.toml
new file mode 100644 (file)
index 0000000..95bc3f5
--- /dev/null
@@ -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
index 4535d10f92706917ed484a3bc49bed1d5917dffe..b562626d1703f840a19a2c63f23be98467e3601c 100644 (file)
@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="">
+<html lang="en">
        <head>
                <meta charset="utf-8">
                <link rel="stylesheet" href="style.css">
index ac544b5ef66922d05d389998784faf018e3a36b8..dc7a5fd0fca6a118d0e205ec8328f3c91849f359 100644 (file)
@@ -1,5 +1,5 @@
 <!DOCTYPE html>
-<html lang="">
+<html lang="en">
        <head>
                <meta charset="utf-8">
                <link rel="stylesheet" href="../style.css">
                <a href="https://git.ozva.co.uk/?p=bread;a=history;f=src/{{ recipe.filename }};">[History]</a> -
                <a href="{{ recipe.pdf }}">[PDF]</a>
                <p>{{ recipe.information.description }}</p>
+
                <h2>Notes</h2>
                {{ recipe.information.notes|replace("\n", "<br>") }}
+
                <h2>Ingredients</h2>
                <table>
                        <tr>
                        {% endfor %}
                </table>
                <p><em>
-               Percentage total: {{ recipe.total }}%<br>
-               Values have been rounded where the error would not be significant (p &lt; 0.05).
+                       Percentage total: {{ recipe.total }}%<br>
+                       Values have been rounded where the error would not be significant (p &lt; 0.05).
                </em></p>
-                       <p>Last compiled at <a href="https://git.ozva.co.uk/?p=bread;a=commit;h=HEAD">{{ time }}</a></p>
+
+               {% if recipe.information.links is defined %}
+                       <h2>Links</h2>
+                       <ul>
+                               {% for link in recipe.information.links %}
+                                       <li><a href="{{link}}">{{link}}</a></li>
+                               {% endfor %}
+                       </ul>
+               {% endif %}
+
+               <p>Last compiled at <a href="https://git.ozva.co.uk/?p=bread;a=commit;h=HEAD">{{ time }}</a></p>
                </main>
        </body>
 </html>