Added some recipes.

This commit is contained in:
Jesse Brault 2024-08-01 08:00:08 -05:00
parent 9983b0ef95
commit 710f0d7c00
6 changed files with 47 additions and 2 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 129 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

View File

@ -0,0 +1,21 @@
---
title: Naturally Leavened Sourdough Bread
slug: naturally-leavened-sourdough-bread
isPublic: true
mainImage:
src: KingArthurSourdough.webp
title: Sourdough Bread
alt: Sourdough bread.
caption: Sourdough bread.
isPublic: true
---
Adapted from [King Arthur Flour](https://www.kingarthurbaking.com/recipes/naturally-leavened-sourdough-bread-recipe).
## Ingredients
- 225g starter
- 350g bread flour
- 1 1/4 tsp. table salt
- 200g water
## Instructions
The normal bread making instructions.

View File

@ -3,7 +3,7 @@ title: German (Bavarian) Obazda
slug: obazda slug: obazda
isPublic: true isPublic: true
mainImage: mainImage:
src: images/Obazda.jpg src: Obazda.jpg
title: Obazda title: Obazda
alt: Obazda. alt: Obazda.
caption: German Obazda. caption: German Obazda.

View File

@ -0,0 +1,24 @@
---
title: Sourdough Bread
slug: sourdough-bread
isPublic: true
mainImage:
src: Sourdough.webp
title: Sourdough Bread
alt: Sourdough bread.
caption: Sourdough bread.
isPublic: true
---
Originally by [The Clever Carrot](https://www.theclevercarrot.com/2014/01/sourdough-bread-a-beginners-guide/).
## Ingredients
- 150g active, bubbly (fed) starter
- 250g warm water
- 25g olive oil
- 500g bread flour
- 10g fine sea salt
## Instructions
Mix wet ingredients, then add salt, then add flour. Mix well. Knead until smooth
but still slightly tacky. Let rise for at least two hours or until doubled, perhaps
as long as eight hours. Bake for about 45 minutes at 400 degrees Fahrenheit.

View File

@ -87,7 +87,7 @@ public class DevConfiguration {
imageCreateSpec.setCaption(frontMatter.mainImage.caption); imageCreateSpec.setCaption(frontMatter.mainImage.caption);
imageCreateSpec.setPublic(frontMatter.mainImage.isPublic); imageCreateSpec.setPublic(frontMatter.mainImage.isPublic);
final Path givenPath = Path.of(frontMatter.mainImage.src); final Path givenPath = Path.of(frontMatter.mainImage.src);
final Path resolvedPath = Path.of("dev-data").resolve(givenPath); final Path resolvedPath = Path.of("dev-data", "images").resolve(givenPath);
final Image mainImage; final Image mainImage;
try (final InputStream inputStream = new FileInputStream(resolvedPath.toFile())) { try (final InputStream inputStream = new FileInputStream(resolvedPath.toFile())) {
final long size = Files.size(resolvedPath); final long size = Files.size(resolvedPath);