-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcheesecake.html
More file actions
658 lines (582 loc) · 23.4 KB
/
cheesecake.html
File metadata and controls
658 lines (582 loc) · 23.4 KB
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="Nutty's Cheesecake: such a delicate flavour and so indulgently creamy with gorgeous biscuity scrumminess. No baking required here — simplicity can be delicious"
/>
<!-- *********************FACEBOOK START******************** -->
<!-- facebook meta tags to ensure correct image / page is shared START-->
<!-- set the URL that you want Facebook to point to in this tag -->
<meta
property="og:url"
content="https://www.nuttyskitchen.co.uk/mascarpone-pie.html"
/>
<meta property="og:type" content="article" />
<meta property="og:title" content="Cheesecake" />
<!-- set a very short description of the page in this tag -->
<meta
property="og:description"
content="Nutty's Cheesecake: indulgently creamy, gorgeous biscuity scrumminess"
/>
<!-- set the image that you want Facebook to display in this tag-->
<meta
property="og:image"
content="https://www.nuttyskitchen.co.uk/images/mascarpone-pie/650x366/mascarpone-pie-with-black-cherry-pie-filling.webp"
/>
<!-- facebook meta tags to ensure correct image / page is shared END-->
<!-- *********************FACEBOOK END********************* -->
<!-- Set the webpage title here - it shows up in the browser tab -->
<title>Cheesecake | Nutty's Kitchen</title>
<!--set the image that shows in the browser tabs -->
<link rel="icon" href="favicon.svg" />
<!-- tell google to use this page as the canonical page -->
<link
rel="canonical"
href="https://www.nuttyskitchen.co.uk/cheesecake.html"
/>
<!-- Pre-load the font used on the website: "Poppins" -->
<link
rel="preload"
href="/fonts/poppins-regular-webfont.woff2"
as="font"
type="font/woff2"
crossorigin
/>
<!-- load the CSS stylesheets here -->
<link rel="stylesheet" href="/styles/tabs-nav.css" />
<link rel="stylesheet" href="/styles/background.css" />
<!-- Set CSS variables here -->
<style>
:root {
/* set the background image */
--bg-img: url("/images/icons/blank.png");
/* set the background size */
--bg-size: 32px;
/* set the start of the 2nd colour of the gradient */
/* basically, increase the value until the background
images are below the intro' paragraphs */
--bg-1st-col-stop: 35%;
}
</style>
</head>
<body>
<nav class="nav-main" aria-label="main navigation">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/recipe-links.html">Index</a></li>
<li>
<a
href="https://recipes.nuttyskitchen.co.uk/recipes"
class="recipe-page-link"
data-fallback="https://www.nuttyskitchen.co.uk/recipepage.html"
data-test-image="https://recipes.nuttyskitchen.co.uk/images/icons/blank.svg"
>
Recipes
</a>
</li>
<li><a href="/contact-form.html">Contact</a></li>
</ul>
</nav>
<!-- RECIPE PAGE NAVIGATION -->
<div id="nav-container" class="nav-container"></div>
<!-- RECIPE PAGE NAVIGATION -->
<section class="fg">
<header class="title">
<div class="title-wrap">
<img
width="60"
height="32"
src="/images/logo-left.svg"
alt="logo left"
title="nuttys kitchen logo left"
/>
<!-- Set the page title here -->
<h1>Cheesecake</h1>
<img
width="60"
height="32"
src="/images/logo-right.svg"
alt="logo right"
title="nuttys kitchen logo right"
/>
</div>
<img
src="/images/nuttys-kitchen-logo.svg"
alt="nuttys kitchen logo"
width="160"
height="40"
title="nuttys kitchen logo"
class="logo-main"
/>
<!-- First paragraph after the page title -->
<p>No ache, no bake! My really easy cheesecake.</p>
<p>
Impress your guests
<img
src="/images/icons/family-man-woman-girl-girl-48.png"
alt="family icon"
title="icon of family of four"
style="width: 24px"
class="inline"
/>
you can not eat all this by yourself!
</p>
<p>
This is an <em>unbaked</em> cheesecake that is simply set in the
fridge and then topped with a fruit compote that is just as easy to
make as the cheesecake itself. It has a deliciously creamy texture
with a hint of cream cheese, sweetness and vanilla all set on a
heavenly salty-sweet biscuit base. I don't scrimp on the biscuits
either! Its crowning glory is the optional pallet tingling fruity
topping
<img
src="/images/icons/blueberries-50.png"
alt="blueberries icon"
title="icon of blueberries"
style="width: 24px"
class="inline"
/>
which just elevates this desert to another level.
</p>
<!-- Final paragraph before 2 col layout -->
<p>
Click the <strong>Method</strong> tab below to see a step-by-step
guide on how to make <strong>Cheesecake</strong> along with some
pictures as a guide.
</p>
</header>
<!-- ######## Two column layout colapses into one on small screens -->
<!-- class about-center = set columns -->
<!-- class section-center = set width -->
<div class="about-center section-center">
<!-- first image on the page sits underneath the final paragraphs -->
<!-- - img on left, ingredients/method tabs on right -->
<figure class="about-img">
<img
src="/images/cheesecake/650x366/cheesecake-with-blueberry-topping.webp"
alt="cheesecake with blueberry topping"
title="cheesecake with blueberry topping on a plate"
/>
</figure>
<article class="about">
<!-- buttons container -->
<div class="btn-container">
<!-- class active = show content -->
<button
title="Click this tab to reveal the ingredients"
class="tab-btn active"
data-id="ingredients"
>
ingredients
</button>
<button
title="Click this tab to read the recipe method and see pictures of how to make this dish"
class="tab-btn"
data-id="method"
>
method
</button>
</div>
<!-- This is where the "Ingredients" & "Method" tabs are created -->
<!-- about content -->
<article class="about-content">
<!-- single item -->
<!-- the class `active` is applied to show the contents of the tab. "Ingredients" is active by default -->
<div class="content active" id="ingredients">
<h2>ingredients</h2>
<p>Here's what you need :¬)</p>
<!-- Ingredients List Goes Below Here!!! -->
<h2>serves 8</h2>
<h2>Cake ingredients</h2>
<ul>
<li>250g digestive biscuits - crushed to a fine crumb</li>
<li>100g butter</li>
<li>50g icing sugar</li>
<li>400g mascarpone cream</li>
<li>1 tsp vanilla extract</li>
<li>400g cream cheese</li>
</ul>
<div class="spacer"></div>
<h2>Topping ingredients</h2>
<ul>
<li>300g blue berries</li>
<li>70g granulated sugar</li>
<li>2 teaspoons fresh lemon juice</li>
<li>165g water</li>
<li>4 teaspoons cornstarch</li>
</ul>
<div class="spacer"></div>
<p>
* the topping is optional as a pie filling or fresh fruit would
also be perfect or simply serve as it is naked.
</p>
<!-- Ingredients List Goes Above Here!!! -->
</div>
<!-- end of single item -->
<!-- single item -->
<!-- The method tab does not have the class `active` by default, thus it is hidden from view. When the user clicks
the "Method" tab the `active` class is applied here and
removed from the "Ingredients" tab, which is then hidden
from view
-->
<div class="content" id="method">
<h2>method</h2>
<p>
You will need a small pan to heat your butter for the base and a
pre-lined 23cm loose bottomed cake tin. See below.
</p>
<div style="width: 100px">
<figure class="card_image">
<figcaption>base</figcaption>
<img
src="/images/cheesecake/200/cake-tin-base-cropped-02.webp"
alt="cake tin base"
title="cake tin base for cheese cake"
/>
</figure>
</div>
<div style="width: 100px">
<figure class="card_image">
<figcaption>lined base</figcaption>
<img
src="/images/cheesecake/200/base-and-paper-cropped-02.webp"
alt="base and paper"
title="cake tin base and paper for cheese cake"
/>
</figure>
</div>
<div style="width: 50%">
<figure class="card_image">
<figcaption>assembled cake tin</figcaption>
<img
src="/images/cheesecake/150/cake-tin-assembled.webp"
alt="cake tin assembled"
title="cake tin assembled for cheese cake"
/>
</figure>
</div>
<p>
<strong
>NOTE: Greese the inside of the cake tin lightly with
butter!</strong
>
</p>
<div class="spacer"></div>
<p>
<strong>The biscuit base:</strong> A blender is handy to crush
the biscuits but not essential as this can easily be done with a
bag & a rolling pin especially if you need to vent some
frustration!
</p>
<div class="spacer"></div>
<p>
<strong>The Topping:</strong> I made a Blueberry Compote for the
topping here, but you have a few choices:
</p>
<div class="terms">
<ul>
<li>
Use my really
<a href="#easy-compote"
><strong>easy compote recipe</strong></a
>
</li>
<li>Use a cheats' tin of prepared topping / filling</li>
<li>Top with fresh fruit - strawberries, blueberries etc.</li>
<li>Serve naked - just cheesecake & biscuit!</li>
</ul>
</div>
<div style="width: 100px">
<figure class="card_image">
<figcaption>my Cheats' tin!</figcaption>
<img
src="/images/cheesecake/tin-of-pie-filling.webp"
alt="black cherry pie filling"
title="a tin of black cherry pie filling for cheese cake"
/>
</figure>
</div>
<p id="easy-compote">
<strong>Note:</strong> Only use a good quality pie
filling/topping. I once tried a tin of strawberries in light
syrup, and, well... <strong>Don't! Just Don't!!!</strong>
</p>
<h2>Blueberry Compote Recipe</h2>
<p>
This is a really easy fruit compote recipe that you can make in
just a few minutes. It's perfect for topping your cheesecake.
</p>
<p>
Make this when you put your biscuit base in the fridge to set.
</p>
<ol start="1">
<li>
In a small bowl, mix a little of the water with the cornstarch
until smooth.
</li>
<li>
Combine blueberries, sugar, water and lemon juice in a
saucepan.
</li>
<li>Stir in the cornstarch mixture.</li>
<li>
Bring the mixture to a gentle simmer over a medium heat.
</li>
</ol>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>
heat gently over a medium heat til simmering
</figcaption>
<img
src="/images/cheesecake/650x366/compote-01.webp"
alt="compote"
title="compote cooking in pan for cheesecake"
/>
</figure>
<div class="spacer"></div>
<ol start="5">
<li>
<img
src="/images/icons/hourglass-not-done-50.png"
alt="hour glass not done icon"
title="icon of an hour glass not done"
style="width: 24px"
class="inline"
/>Reduce the heat & cook for 2-3 minutes until thickened.
</li>
</ol>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>simmer until thickened</figcaption>
<img
src="/images/cheesecake/650x366/compote-07.webp"
alt="compote"
title="compote simmering in pan for cheesecake"
/>
</figure>
<div class="spacer"></div>
<ol start="6">
<li>Remove from heat and let it cool before using.</li>
</ol>
<div class="spacer"></div>
<p>And that's about all you need, so without further ado...</p>
<!-- Method List Goes Below Here!!! -->
<div class="spacer"></div>
<h2>let's make the base!</h2>
<ol>
<li>
Heat a small saucepan with 100g of butter till just melted &
add your 250g crushed biscuits combine well.
</li>
</ol>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>melt some butter</figcaption>
<img
src="/images/cheesecake/650x366/melted-butter-in-pan.webp"
alt="melted butter in pan"
title="melted butter in pan for cheesecake"
/>
</figure>
<div class="spacer"></div>
<ol start="2">
<li>Add your biscuit crumbs to the melted butter.</li>
</ol>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>add biscuit crumbs</figcaption>
<img
src="/images/cheesecake/650x366/biscuit-crumbs-in-butter.webp"
alt="biscuit crumbs in butter"
title="biscuit crumbs in butter for cheesecake"
/>
</figure>
<div class="spacer"></div>
<ol start="3">
<li>Mix the crumbs & butter well.</li>
</ol>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>mix the biscuit crumbs & butter</figcaption>
<img
src="/images/cheesecake/650x366/mixing-crumbs-and-butter-03.webp"
alt="mixing crumbs and butter"
title="mixing crumbs and butter for cheesecake"
/>
</figure>
<div class="spacer"></div>
<ol start="4">
<li>Press the biscuit mix into a lined tin & chill til set.</li>
</ol>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>press the biscuit crumbs in to the base</figcaption>
<img
src="/images/cheesecake/650x366/pressing-crumbs-02.webp"
alt="pressing crumbs"
title="pressing crumbs for cheesecake"
/>
</figure>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>chill the base in the fridge</figcaption>
<img
src="/images/cheesecake/650x366/biscuit-base-01.webp"
alt="biscuit base"
title="biscuit base for cheesecake"
/>
</figure>
<div class="spacer"></div>
<ol start="5">
<li>
Sieve the 50g icing sugar into a large bowl add 400g
mascarpone cream & mix well.
</li>
<li>
Add 1 tsp vanilla extract & the 400g cream cheese & combine
well.
</li>
</ol>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>combine cheesecake ingredients</figcaption>
<img
src="/images/cheesecake/650x366/topping-unmixed-02.webp"
alt="topping unmixed"
title="topping unmixed for cheesecake"
/>
</figure>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>mix the cheesecake ingredients well</figcaption>
<img
src="/images/cheesecake/650x366/topping-mixed-01.webp"
alt="topping mixed"
title="topping mixed for cheesecake"
/>
</figure>
<div class="spacer"></div>
<ol start="7">
<li>
Once your biscuit base has completely cooled you can now top
with your creamed cheese mixture smoothing the top with a
pallet knife or spatula.
</li>
</ol>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>add mixture to the base</figcaption>
<img
src="/images/cheesecake/650x366/building-cheese-cake-topping-07.webp"
alt="building cheese cake topping"
title="building cheese cake topping for cheesecake"
/>
</figure>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>smooth with a spatula</figcaption>
<img
src="/images/cheesecake/650x366/smoothing-cheese-cake-toppping-02.webp"
alt="smoothing cheese cake topping"
title="smoothing cheese cake topping for cheesecake"
/>
</figure>
<div class="spacer"></div>
<ol start="8">
<li>make a lip around the edge to hold the topping.</li>
</ol>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>make a lip around the edge</figcaption>
<img
src="/images/cheesecake/650x366/making-a-lip-03.webp"
alt="making a lip"
title="making a lip for cheesecake topping"
/>
</figure>
<div class="spacer"></div>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>so that it looks something like this:</figcaption>
<img
src="/images/mascarpone-pie/650x366/mascarpone-pie-with-lip-to-hold-filling.webp"
alt="mascarpone pie with lip to hold filling"
title="mascarpone pie with lip to hold filling"
/>
</figure>
<div class="spacer"></div>
<ol start="9">
<li>Add the topping</li>
</ol>
<div class="spacer"></div>
<figure class="card_image">
<figcaption>add the topping</figcaption>
<img
src="/images/cheesecake/650x366/compote-added-02.webp"
alt="compote added"
title="compote added for cheesecake topping"
/>
</figure>
<div class="spacer"></div>
<ol start="10">
<li>Place into the fridge until ready to serve</li>
</ol>
<div class="spacer"></div>
<p>
I have topped mine with a blueberry fruit compote, alternatively
use a tin of Princess™ Black Cherry Fillings & Toppings
— which is a fast and easy pie topping to use, or, simply
top with fresh berries of your choosing.
</p>
<div class="spacer"></div>
<div class="spacer"></div>
<figure class="card_image_round">
<figcaption>cheesecake & blueberry topping</figcaption>
<img
src="/images/cheesecake/650x366/cheesecake-with-blueberry-topping.webp"
alt="cheesecake with blueberry topping"
title="cheesecake with blueberry topping on a plate"
/>
</figure>
<div class="spacer"></div>
<!-- Method List Goes Above Here!!! -->
<!-- This is THE END!!!!!! -->
<!-- don't mess with the closing tags or anything below here!!! -->
</div>
<!-- end of single item -->
<section class="related">
<h1>Related recipes</h1>
<ul>
<li>
<a
class="underline"
href="https://www.nuttyskitchen.co.uk/mascarpone-pie.html"
>mascarpone pie
</a>
</li>
<li>
<a
href="https://www.nuttyskitchen.co.uk/pear-coconut-blackberry-cake.html"
class="underline"
>pear coconut blackberry cake
</a>
</li>
</ul>
</section>
</article>
</article>
</div>
</section>
<!-- javascript -->
<!-- `app.js` is the program that runs on every page to create
the menu and footer amongst other things such as controlling
the visibility of the tabs when a user clicks on them
-->
<script src="/src/app.js"></script>
<!-- NOTE: recipecards.js only runs on the `recipepage.html` -->
</body>
</html>