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
|
<!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://greenkitchenstories.com/wp-content/uploads/2016/04/gks_pea_fritters_04-800x1200.jpg"
>
<img
src="Images/F4180E46-228E-40F3-8F5A-28AEB5B69491/7D27E684-318C-43BF-A9A3-FED60C493189.jpg"
itemprop="image"
class="photo photoswipe"
/>
</a>
</div>
<!-- Name -->
<h1 itemprop="name" class="name">
Green Pea, Millet & Mint Fritters
</h1>
<!-- Info -->
<!-- Rating, categories -->
<p itemprop="aggregateRating" class="rating" value="0"></p>
<p class="metadata">
<!-- Cook time, prep time, servings, difficulty -->
<b>Servings: </b><span itemprop="recipeYield">Serves 4</span>
<!-- Source -->
<b>Source: </b>
<a
itemprop="url"
href="https://greenkitchenstories.com/pea-millet-mint-fritters/"
>
<span itemprop="author">greenkitchenstories.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 1/2</strong> cup / 225 g fresh green peas (or frozen and
thawed)
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> packed cup / 160 g cooked millet (1/3 cup / 70
g uncooked) (cooked quinoa or rice should work too)
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> spring onion, chopped
</p>
<p class="line" itemprop="recipeIngredient">
<strong>2</strong> eggs
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> handful fresh mint and parsley leaves (6
sprigs, picked)
</p>
<p class="line" itemprop="recipeIngredient">
<strong>4</strong> tbsp ricotta cheese (or cottage cheese)
</p>
<p class="line" itemprop="recipeIngredient">salt and pepper</p>
<p class="line" itemprop="recipeIngredient">
coconut oil, for frying
</p>
<br />
<p class="line" itemprop="recipeIngredient">coconut oil</p>
<p class="line" itemprop="recipeIngredient">
a few handfuls wild spinach
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1-2</strong> tsp chili flakes
</p>
<p class="line" itemprop="recipeIngredient">salt and pepper</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">Serve with</p>
<p class="line">
Add 1 cup / 150 g of the peas to a food processor along with
millet, spring onion, eggs, herbs, ricotta cheese, salt and
pepper. Pulse a few times on high speed until mixed but still
slightly chunky. Mash the remaining peas roughly with a fork and
stir into the batter. Let sit for 20 minutes to let the
ingredients come together (which will make them easier to fry).
Add a teaspoon of coconut oil to a non-stick frying pan on medium
heat, wait until it’s hot and then use a large spoon to dollop the
fritters into the pan and flat them out into rounds (depending on
the size of the pan, you should be able to fit between three and
five of them each time). Cook until they begin to set, roughly
about 3 minutes and then carefully flip them with a spatula. If
the batter feels too soft and runny, you can add some extra millet
to it. Fry all the fritters and place on a tray to cool off just
slightly while wilting the spinach.
</p>
<p class="line">
Using the same frying pan, simply add the spinach to a little oil
and chili flakes on a medium heat and let sauté for a few minutes
until it has wilted down.
</p>
<p class="line">
Place the spinach on plates, top with a few sweet pea fritters,
yogurt, sprouts, radishes and a generous amount of lemon zest and
soft boiled eggs on the side. Enjoy!
</p>
<p class="line">
<strong></strong><strong></strong><strong></strong
><strong></strong>**
</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>
|