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
|
<!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://live-production.wcms.abc-cdn.net.au/260fd70e08423e1adbf564f77a7409f3?impolicy=wcms_crop_resize&cropH=1126&cropW=2000&xPos=0&yPos=182&width=862&height=485"
>
<img
src="Images/AB467EAE-7BEC-4CD1-98C6-F33CAE926071-21109-000003467E943F2A/7BCDB8E7-CEA8-4BB0-8D9A-690758726EC2-21109-000003468368DCD3.jpg"
itemprop="image"
class="photo photoswipe"
/>
</a>
</div>
<!-- Name -->
<h1 itemprop="name" class="name">
Creamy One-Pot Pasta with Tuscan Kale, Almonds and Lemon
</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">0:15</span>
<b>Cook Time: </b><span itemprop="cookTime">0:15</span>
<b>Servings: </b><span itemprop="recipeYield">4</span>
<!-- Source -->
<b>Source: </b>
<a
itemprop="url"
href="https://www.abc.net.au/everyday/one-pot-pasta-with-kale-cream-lemon-and-almonds-recipe/11241756"
>
<span itemprop="author">abc.net.au</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>320</strong>g maccheroni al ferretto, orecchiette or any
pasta of your choice
</p>
<p class="line" itemprop="recipeIngredient">
<strong>150</strong>ml pure cream
</p>
<p class="line" itemprop="recipeIngredient">
<strong>2</strong> cloves garlic, finely chopped
</p>
<p class="line" itemprop="recipeIngredient">
<strong>1</strong> lemon, juiced and zested
</p>
<p class="line" itemprop="recipeIngredient">
<strong>60</strong>ml extra virgin olive oil, plus extra to serve
</p>
<p class="line" itemprop="recipeIngredient">
Pinch of dried chilli flakes
</p>
<p class="line" itemprop="recipeIngredient">
Large pinch of sea salt
</p>
<p class="line" itemprop="recipeIngredient">
<strong>600</strong>ml boiling water, use your kettle to save time
</p>
<p class="line" itemprop="recipeIngredient">
<strong>150</strong>g or half a bunch of cavolo nero leaves (also
know as Tuscan kale), roughly torn into small pieces
</p>
<p class="line" itemprop="recipeIngredient">
<strong>50</strong>g (1/3 cup) toasted almonds, roughly chopped
</p>
<p class="line" itemprop="recipeIngredient">
<strong>70</strong>g parmesan cheese, grated, plus extra to serve
</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">
1. In a large deep-sided pan, place all of the ingredients except
for the almonds and parmesan and stir to combine. Place over a
high heat and cover with a lid. Bring to a boil then reduce heat
to medium and cook for around 8 minutes or until the pasta is just
under al dente. If you are using a different pasta shape, begin
checking at the 7 minute mark. The best way to test is to simply
try some of the pasta. It should be chewy with a little
resistance, but not chalky.
</p>
<p class="line">
2. Remove the lid and stir through the almonds and parmesan and
continue to cook until pasta is al dente and the sauce is thick
and creamy (1-2 minutes). If the sauce has dried up too much, add
in a little extra water. The pasta continues to soak up liquid
even once off the heat, so it's better to have a little extra
water on hand to add if necessary. Serve the pasta with extra
parmesan and a drizzle of olive oil.
</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>
|