1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
|
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Recipe -->
<div class="recipe" itemscope itemtype="http://schema.org/Recipe">
<div class="infobox">
<!-- Image -->
<!-- Name -->
<h1 itemprop="name" class="name">Egg Custard</h1>
<!-- Info -->
<!-- Rating, categories -->
<p itemprop="aggregateRating" class="rating" value="5">★★★★★</p>
<p class="metadata">
<!-- Cook time, prep time, servings, difficulty -->
<b>Servings: </b><span itemprop="recipeYield">3 cups</span>
<!-- Source -->
<b>Source: </b>
<span itemprop="author"
>The Cook’s Companion - Stephanie Alexander. Pg. 33</span
>
</p>
<div class="clear"></div>
</div>
<div class="left-column">
<!-- Ingredients -->
<div class="ingredientsbox">
<h3 class="subhead">Ingredients</h3>
<div class="ingredients text">
<p class="line" itemprop="recipeIngredient">
<strong>2</strong> cup fill fat milk
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> cup cream
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> vanilla bean, split
</p>
<p class="line" itemprop="recipeIngredient">
<strong>5</strong> egg yolks
</p>
<p class="line" itemprop="recipeIngredient">
<strong>½</strong> cup castor sugar
</p>
</div>
</div>
<!-- Nutrition (in two-column mode it goes below the ingredients) -->
</div>
<div class="right-column">
<!-- Description -->
<div class="descriptionbox">
<h3 class="subhead">Description</h3>
<div itemprop="description" class="description text">
<p>
This is the basic stirred custard that one serves with steamed
puddings. My version uses half milk, half cream.
</p>
<p>
Make it with all milk, if you prefer. It is also the base for
vanilla ice-cream, with a slight modification.
</p>
<p>This quantity makes 3 cups.</p>
</div>
</div>
<!-- Directions -->
<div class="directionsbox">
<h3 class="subhead">Directions</h3>
<div itemprop="recipeInstructions" class="directions text">
<p class="line">
Bring milk, cream and vanilla bean to simmering point in a
heavy-based saucepan.
</p>
<p class="line">
In a bowl, whisk egg yolks with sugar until light and foamy, then
whisk in warm milk and cream.
</p>
<p class="line">
Return to rinsed-out pan and cook over a moderate heat for at
least 10 minutes, stirring constantly with a wooden spoon, until
mixture thickens and coats back of spoon. (If you have a
thermometer, 82-85°C is the temperature for a properly thickened
custard.)
</p>
<p class="line">
Strain into a cold bowl, then scrape in some vanilla seeds from
the split pod.
</p>
<p class="line">Serve warm or cold.</p>
</div>
</div>
<!-- Notes -->
<!-- Nutrition (in regular mode it goes below the notes) -->
<!-- Used in two different places depending on the recipe layout -->
</div>
<div class="clear"></div>
</div>
</body>
</html>
|