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
|
<!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/2014/11/Spinach_quinoa_patties_01.jpg"
>
<img
src="Images/FABC0359-0A98-4E99-8976-B24BC33E2A92/16606A35-6D1D-4EED-9461-9BF84E945D21.jpg"
itemprop="image"
class="photo photoswipe"
/>
</a>
</div>
<!-- Name -->
<h1 itemprop="name" class="name">
Spinach & Quinoa Patties in a Bowl
</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">10-12 patties</span>
<!-- Source -->
<b>Source: </b>
<a
itemprop="url"
href="https://greenkitchenstories.com/spinach-quinoa-patties-in-a-bowl/"
>
<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</strong> cup / 200 g uncooked quinoa OR 2 ½ cups
pre-cooked quinoa, (black, white or red)
</p>
<p class="line" itemprop="recipeIngredient">
<strong>¾</strong> cup / 3 oz / 80 g rolled oats
</p>
<p class="line" itemprop="recipeIngredient">
<strong>4</strong> eggs
</p>
<p class="line" itemprop="recipeIngredient">
<strong>7</strong> oz / 200 g sheep’s feta cheese
</p>
<p class="line" itemprop="recipeIngredient">
<strong>100</strong> g / 4 cups fresh spinach, chopped
</p>
<p class="line" itemprop="recipeIngredient">
sea salt & pepper
</p>
<p class="line" itemprop="recipeIngredient">
coconut oil, butter, olive oil or ghee for frying
</p>
<p class="line" itemprop="recipeIngredient">
<strong>To serve:</strong>
</p>
<p class="line" itemprop="recipeIngredient">lettuce</p>
<p class="line" itemprop="recipeIngredient">tomatoes</p>
<p class="line" itemprop="recipeIngredient">red cabbage</p>
<p class="line" itemprop="recipeIngredient">winter apple</p>
<p class="line" itemprop="recipeIngredient">soft boiled egg</p>
<p class="line" itemprop="recipeIngredient">cooked white beans</p>
<p class="line" itemprop="recipeIngredient">
sprouts or micro greens
</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">
Cook the quinoa: Place 2 cups / 500 ml water, rinsed quinoa and a
pinch of salt in a medium-size saucepan. Bring to a boil, lower
the heat to a bare simmer and gently cook for about 15minutes, or
until you see small tails on the quinoa seeds. Set aside to cool.
</p>
<p class="line">
In a large mixing bowl, place cooked quinoa, oats, eggs, feta
cheese, chopped spinach, salt and pepper and combine until all is
mixed. Place in the fridge to set for 30 minutes.
</p>
<p class="line">
Take out the mixture and form 10 to 12 patties with your hands.
Heat the oil in a frying pan on medium heat. Add the patties and
fry for about 2-3 minutes on each side or until golden brown.
Serve with lettuce, tomatoes, soft boiled eggs, beans and sprouts
or micro greens. The patties keep for 3-5 days in the fridge and
freezes well.
</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>
|