blob: 47b450a48c435326a62240482cc92602e62c8e49 (
plain)
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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
|
<!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 -->
<div class="photobox">
<a
href="https://images.notquitenigella.com/images/vegemite-scroll/__cheese-vegemite-scroll-5.jpg"
>
<img
src="Images/178AC9E5-EB3B-4CB4-9AAB-170FCC001854-13068-0000041E98DE644B/87BBA78E-A9BB-427F-99C7-1DEF07300E31-13068-0000041F99E55533.jpg"
itemprop="image"
class="photo photoswipe"
/>
</a>
</div>
<!-- Name -->
<h1 itemprop="name" class="name">Cheese & Vegemite Scrolls</h1>
<!-- Info -->
<!-- Rating, categories -->
<p itemprop="aggregateRating" class="rating" value="0"></p>
<p itemprop="recipeCategory" class="categories">Snack</p>
<p class="metadata">
<!-- Cook time, prep time, servings, difficulty -->
<b>Prep Time: </b><span itemprop="prepTime">30 minutes</span>
<b>Cook Time: </b><span itemprop="cookTime">25 minutes</span>
<!-- Source -->
<b>Source: </b>
<a
itemprop="url"
href="https://www.notquitenigella.com/2014/01/21/cheese-vegemite-scroll/"
>
<span itemprop="author">notquitenigella.com</span>
</a>
</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">Magic Bread Dough</p>
<p class="line" itemprop="recipeIngredient">
<strong>200</strong> g cheese
</p>
<p class="line" itemprop="recipeIngredient">
<strong>2</strong> tbsp Vegemite
</p>
<p class="line" itemprop="recipeIngredient">
<strong>60</strong> g butter
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> egg yolk
</p>
</div>
</div>
<!-- Nutrition (in two-column mode it goes below the ingredients) -->
</div>
<div class="right-column">
<!-- Description -->
<!-- Directions -->
<div class="directionsbox">
<h3 class="subhead">Directions</h3>
<div itemprop="recipeInstructions" class="directions text">
<p class="line">
Mix the Vegemite and 60g butter together, weigh the cheese out and
spray a 24cm/9.6inch pie tin with oil spray.
</p>
<p class="line">
Punch down the dough and then knead in the salt for about 1
minute. Roll out to a long rectangle as thin as the dough will
allow. Mine was about 50cmsx30cms. Spread with the Vegemite and
butter mix and then top with the grated cheese.
</p>
<p class="line">
Using a knife slice the dough once inch apart into strips. Roll
the first piece up into a scroll and then join it to the next
strip and continue rolling it up against the other strips
continuing on where the last piece of dough left off until
you've used up all the dough.
</p>
<p class="line">Rolling to make a gigantic scroll</p>
<p class="line">
It's fairly easy until you get to the last quarter of dough -
in that case I press the cheese against the dough and lift up the
strips and pat them against the large coil of dough. Place on the
greased tin and allow to rise in a warm place for 60 minutes.
</p>
<p class="line">
Preheat oven to 180C/350F. Whisk the egg yolk and add a teaspoon
of water if it is too thick. Brush the top of the risen scroll
with the egg wash and then bake in the oven for 20 minutes. If it
is getting too brown, cover with foil sprayed with oil so that it
doesn't stick to the scroll. You don't want it burning
or getting too brown as the cheese gets dry and crunchy. Bake for
another 10 minutes and then remove from oven. Serve warm.
</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>
|