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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
|
<!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://realfood.tesco.com/media/images/Veggie-rice-bowl-1400x919-mini-ba621247-21ff-419b-9604-3a27a255b90b-0-1400x919.jpg"
>
<img
src="Images/86664B91-FD54-4DC1-8FF9-90BD6FBB1370-21470-00000352A4889B01/412E3E73-2423-4555-ADE4-E16303ED0CD5-21470-00000352BF82C794.jpg"
itemprop="image"
class="photo photoswipe"
/>
</a>
</div>
<!-- Name -->
<h1 itemprop="name" class="name">
Veggie Rice Bowl with Peanut Butter
</h1>
<!-- Info -->
<!-- Rating, categories -->
<p itemprop="aggregateRating" class="rating" value="0"></p>
<p class="metadata">
<!-- Cook time, prep time, servings, difficulty -->
<b>Prep Time: </b><span itemprop="prepTime">5 min</span>
<b>Cook Time: </b><span itemprop="cookTime">10 min</span>
<b>Servings: </b><span itemprop="recipeYield">Serves 4</span>
<!-- Source -->
<b>Source: </b>
<a
itemprop="url"
href="https://realfood.tesco.com/recipes/veggie-rice-bowl.html"
>
<span itemprop="author">realfood.tesco.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">
<strong>1</strong> tbsp vegetable oil
</p>
<p class="line" itemprop="recipeIngredient">
<strong>120</strong>g pack Tenderstem broccoli tips, halved
lengthways
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> red pepper, seeded and cut into chunks
</p>
<p class="line" itemprop="recipeIngredient">
<strong>160</strong>g pack marinated tofu pieces
</p>
<p class="line" itemprop="recipeIngredient">
<strong>2</strong> x 250g pouches microwave rice
</p>
<p class="line" itemprop="recipeIngredient">
<strong>200</strong>g frozen peas
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> tbsp sesame seeds
</p>
<p class="line" itemprop="recipeIngredient">
<strong>3</strong> spring onions, chopped
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> red chilli, seeded and finely chopped
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> garlic clove, crushed
</p>
<p class="line" itemprop="recipeIngredient">
<strong>2.5</strong>cm piece fresh ginger, grated
</p>
<p class="line" itemprop="recipeIngredient">
<strong>3</strong> tbsp tamari
</p>
<p class="line" itemprop="recipeIngredient">
<strong>2</strong> tbsp sweet chilli sauce
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> tbsp rice wine vinegar
</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">
Heat the oil in a wok. Add the broccoli and pepper and stir-fry,
over a high heat, for 3 mins. Add the tofu and cook for 1-2 mins,
until crisp.
</p>
<p class="line">
Tip in the rice and stir-fry for 4 mins, breaking up the grains as
they warm. Stir through the peas and cook for a further 2-3 mins.
</p>
<p class="line">
Meanwhile, make the sauce. Mix the chilli, garlic, ginger, tamari,
sweet chilli sauce and vinegar in a bowl. Pour it over the rice
mixture and toss until coated and warmed through. To serve, spoon
into bowls and scatter over the sesame seeds and spring onions.
</p>
<p class="line">See more Vegetarian recipes</p>
</div>
</div>
<!-- Notes -->
<div class="notesbox">
<h3 class="subhead">Notes</h3>
<div itemprop="comment" class="notes text">
<p>Add two tablespoons of peanut butter</p>
</div>
</div>
<!-- Nutrition (in regular mode it goes below the notes) -->
<!-- Used in two different places depending on the recipe layout -->
<div class="nutritionbox textbox">
<h3 class="subhead">Nutrition</h3>
<div itemprop="nutrition" class="nutrition text">
<p>
Energy 1455kj 346kcal 17%<br />Fat 9g 13%<br />Saturates 2g 8%<br />Sugars
10g 11%<br />Salt 1.7g 28%<br />Carbohydrate 51.7g Protein 9.5g
Fibre 7.5g
</p>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</body>
</html>
|