~arestifo/www

251390f33a2b65b3526e4ab01aebd5433788b0b8 — Alberto Restifo 2 years ago 6f19b71
Feature parity
2 files changed, 68 insertions(+), 5 deletions(-)

A content/bread/ciabatta.md
M layouts/bread/single.html
A content/bread/ciabatta.md => content/bread/ciabatta.md +51 -0
@@ 0,0 1,51 @@
---
title: Ciabatta

ingredients:
  - name: Strong Wheat Flour
    quantity: 700
  - name: Stone-Ground Flour
    quantity: 300
  - name: Water
    quantity: 900
  - name: Sourdough Starter
    quantity: 200
    comment: Optional
  - name: Yeast
    quantity: 20
  - name: Salt
    quantity: 20
  - name: Bread Improver
    quantity: 15
---

## Overview

1. Mix together all the dry ingredients
1. Add 600g of the water and mix it well
1. Add the sourdough starter if you're using it
1. Gradually add the remaining water
1. Add the yeast

## Cooking

30 minutes at 230°C for 300g pieces, 10 minutes of steam.

## Procedure

At 90% hydration, this bread is very wet.
Using a kneading machine is recommended as this recipe requires quite a long kneading.

Start by mixing together all the dry ingredients in a bowl.
Add 600g of the water and mix until the water is well incorporated.
At this point, if you're using sourdough, you can mix it in as well.

Continue adding the remainder of the water bit by bit, mixing well in-between.

Knead until passed the Windowpane Test, add the yeast and incorporate it.
Divide into pieces and shape them into long, wide batons.

Cook in the oven for 30 minutes at 230°C with steam for the first 10 minutes of
the cooking.

Let the loafs cool down on a wire rack.

M layouts/bread/single.html => layouts/bread/single.html +17 -5
@@ 4,11 4,23 @@
<article>
  <h1>{{ .Title }}</h1>

  <ul>
    {{ range $ingredient := .Params.ingredients }}
      <li>{{ $ingredient.name }} ({{ $ingredient.quantity }}g)</li>
    {{ end }}
  </ul>
  <h2>Ingredients</h2>

  <table class="ingredients">
    <tbody>
      {{ range $ingredient := .Params.ingredients }}
      <tr>
        <td>{{ $ingredient.quantity }}g</td>
        <td>
          <span class="ingredient-name">{{ $ingredient.name }}</span>
          {{ with $ingredient.comment }}
            <span class="ingredient-comment">{{ $ingredient.comment }}</span>
          {{ end }}
        </td>
      </tr>
      {{ end }}
    </tbody>
  </table>

  {{ .Content }}
</article>