blob: f8263728f9bb2512cbc989ad91b69c203b7e6fdc (
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
|
<!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://www.myfussyeater.com/wp-content/uploads/2016/11/Spinach-Cheese-Muffins_001-300x450.jpg"
>
<img
src="Images/168BE638-2CD9-4DF2-9536-1AD0BC33A280-21470-0000034B5F8F0C22/2997AE56-03AF-41F6-8536-8CADBD3E255E-21470-0000034B63796059.jpg"
itemprop="image"
class="photo photoswipe"
/>
</a>
</div>
<!-- Name -->
<h1 itemprop="name" class="name">
Spinach & Cheese Savoury Lunchbox Muffins
</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 mins</span>
<b>Cook Time: </b><span itemprop="cookTime">20 mins</span>
<b>Servings: </b><span itemprop="recipeYield">Yield: 12</span>
<!-- Source -->
<b>Source: </b>
<a
itemprop="url"
href="https://www.myfussyeater.com/spinach-cheese-savoury-lunchbox-muffins/"
>
<span itemprop="author">myfussyeater.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>2</strong> medium eggs
</p>
<p class="line" itemprop="recipeIngredient">
<strong>150</strong>ml / 1/2 cup milk
</p>
<p class="line" itemprop="recipeIngredient">
<strong>75</strong>g / 1/2 cup butter, melted
</p>
<p class="line" itemprop="recipeIngredient">
<strong>150</strong>g / 2 cups grated cheddar cheese
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> spring onion, chopped
</p>
<p class="line" itemprop="recipeIngredient">
<strong>75</strong>g / 2 cups fresh baby spinach, chopped
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1/2</strong> red pepper or carrot diced
</p>
<p class="line" itemprop="recipeIngredient">
<strong>250</strong>g / 2 cups self raising flour
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1/2</strong> vegetable stock cube (can use low or no
sodium stock cube)
</p>
<p class="line" itemprop="recipeIngredient">
salt and pepper to taste (but can be left out)
</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">
Preheat the oven to 180c / 350f and line a muffin tin with 12
muffin cases.
</p>
<p class="line">
Gently whisk the eggs in a large bowl and stir in the milk and
melted butter. Mix in the grated cheese, spring onion, baby
spinach and diced pepper.
</p>
<p class="line">
Finally, add in the flour, salt and pepper (if using) and crumble
in the stock cube and mix just enough until all the ingredients
have combined.
</p>
<p class="line">
Divide the mixture between the 12 muffin cases and bake in the
oven for 20-25 minutes until cooked through (a skewer stuck into
the middle should come out dry).
</p>
<p class="line">
These muffins can be frozen once they have cooled completely. To
defrost simply leave out for a few hours or overnight.
</p>
</div>
</div>
<!-- Notes -->
<!-- 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>
Fat: 12.7 g<br />Calories: 211<br />Saturated Fat: 7.1 g<br />Sodium:
161.5 mg<br />Fiber: 2.6 g<br />Cholesterol: 63.3 mg<br />Carbohydrate:
16.9 g<br />Sugar: 1.3 g<br />Serving Size: 1 muffin<br />Trans
Fat: 0.2 g<br />Protein: 8.8 g
</p>
</div>
</div>
</div>
<div class="clear"></div>
</div>
</body>
</html>
|