Add pastry dough recipe

This commit is contained in:
Andrew Miner
2020-12-30 12:47:38 -07:00
parent 606f2656ad
commit bf8373d595
5 changed files with 135 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB

+98
View File
@@ -0,0 +1,98 @@
<!DOCTYPE html>
<html>
<head>
<link href="../../style2.css" rel="stylesheet" type="text/css" />
<meta charset="UTF-8" />
<meta name="viewport" content="user-scalable=no, width=device-width" />
<body class="recipe" itemscope itemtype="http://schema.org/Recipe">
<section class="header">
<div class="image" style="background-image: url('./image.png')" itemprop="image" src="./image.png"></div>
<div class="about">
<h1 itemprop="name">Pastry Dough</h1>
<div class="timing">
prep <span itemprop="prepTime">15 minutes</span> </div>
<div class="icons">
<div class="icon vegetarian"></div>
<div class="icon serving"></div>× <span itemprop="recipeYield">1</span>
</div>
<div class="description" itemprop="description">This dough forms the basis for pies, tarts, quiches, and other sorts of light crusts. This recipe makes enough dough to line the bottom of a 9” pie dish, so adjust the quantities according to what you intend to make. It helps a lot to chill the butter, shortening, and water ahead of time.
</div>
</div>
</section>
<section class="instructions">
<div class="step">
<h3>1</h3>
<div class="ingredients">
<ul>
<li itemprop="recipeIngredient">
<div class="amount">
1 cup
</div>
<div class="item">flour, all-purpose</div>
<li itemprop="recipeIngredient">
<div class="amount">
6 oz
</div>
<div class="item">butter, unsalted</div>
<li itemprop="recipeIngredient">
<div class="amount">
2 tbsp
</div>
<div class="item">vegetable shortening</div>
<li itemprop="recipeIngredient">
<div class="amount">
½ tsp
</div>
<div class="item">salt</div>
<li itemprop="recipeIngredient">
<div class="amount">
⅛ tsp
</div>
<div class="item">sugar, granulated</div>
</ul>
</div>
<div class="detail" itemprop="recipeInstructions">Add all the ingredients to a mixing bowl and combine with a pastry cutter until pea-sized chunks have formed.
</div>
</div>
<div class="step">
<h3>2</h3>
<div class="ingredients">
<ul>
<li itemprop="recipeIngredient">
<div class="amount">
¼ cup
</div>
<div class="item">water, iced</div>
</ul>
</div>
<div class="detail" itemprop="recipeInstructions">Pour in about 3/4 of the water and mix quickly with your hand until a contiguous paste has formed. Keep adding water as needed until a smooth and slightly sticky dough has formed.
</div>
</div>
<div class="step">
<h3>3</h3>
<div class="ingredients">
<ul>
</ul>
</div>
<div class="detail" itemprop="recipeInstructions">Lay out the dough on a lightly floured surface, and knead it by smearing it vigorously about 6” across the surface using the heel of your hand. Then, gather the dough back together, fold it in half, turn it 90°, and repeat. Keep this up until completely combined. Then, place the dough in the center of some waxed paper and cover with another piece. Using a rolling pin, flatten until it is smooth and makes a disc about the same diameter as the short side of your paper. Refrigerate at least 2 hours before using.
</div>
</div>
</section>
<section class="credits">
<span itemprop="author">Julia Child</span>
,&nbsp;
<a href="Mastering the Art of French Cooking, Volume I, pgs. 139146">Mastering the Art of French Cooking, Volume I, pgs. 139146</a>
</section>
<section class="navigation">
<a href="../..">« Back</a>
</section>
</body>
</html
+4
View File
@@ -150,6 +150,10 @@
<img src="baking/maple-sorghum-skillet-bread/image.png" />
<p>Maple-Sorghum Skillet Bread</p>
</a>
<a href="baking/pastry-dough">
<img src="baking/pastry-dough/image.png" />
<p>Pastry Dough</p>
</a>
<a href="baking/pizza">
<img src="baking/pizza/image.png" />
<p>Pizza</p>
+33
View File
@@ -0,0 +1,33 @@
title: Pastry Dough
timings:
prep: 15 minutes
icons: [vegetarian]
servings: 1
description: >
This dough forms the basis for pies, tarts, quiches, and other sorts of light crusts. This recipe makes enough dough
to line the bottom of a 9” pie dish, so adjust the quantities according to what you intend to make. It helps a lot to
chill the butter, shortening, and water ahead of time.
steps:
- ingredients:
- { amount: 1, unit: cup, item: "flour, all-purpose" }
- { amount: 6, unit: oz, item: "butter, unsalted" }
- { amount: 2, unit: tbsp, item: "vegetable shortening" }
- { amount: 0.5, unit: tsp, item: "salt" }
- { amount: 0.125, unit: tsp, item: "sugar, granulated" }
directions: >
Add all the ingredients to a mixing bowl and combine with a pastry cutter until pea-sized chunks have formed.
- ingredients:
- { amount: 0.25, unit: cup, item: "water, iced" }
directions: >
Pour in about 3/4 of the water and mix quickly with your hand until a contiguous paste has formed. Keep adding
water as needed until a smooth and slightly sticky dough has formed.
- ingredients: []
directions: >
Lay out the dough on a lightly floured surface, and knead it by smearing it vigorously about 6” across the surface
using the heel of your hand. Then, gather the dough back together, fold it in half, turn it 90°, and repeat.
Keep this up until completely combined. Then, place the dough in the center of some waxed paper and cover with
another piece. Using a rolling pin, flatten until it is smooth and makes a disc about the same diameter as the
short side of your paper. Refrigerate at least 2 hours before using.
credit:
name: Julia Child
url: Mastering the Art of French Cooking, Volume I, pgs. 139146
Binary file not shown.

After

Width:  |  Height:  |  Size: 152 KiB