-
Notifications
You must be signed in to change notification settings - Fork 0
/
sweets.html
1157 lines (1136 loc) · 47.2 KB
/
sweets.html
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
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
layout: default
title: Sweet Recipes Page
description: Nathan Ryan's sweet recipes.
---
<section>
<header class="main">
<meta name="description" content="Nathan Ryan's sweets recipes.">
<meta name="keywords" content="Nathan, Nathan Ryan, nuclear, nuclear energy, clean energy, scientific computing, UIUC, NPRE, engineering, Illinois, fuel cycles, simulation, policy, energy systems, modeling, italian, franch, home cook, vegan, self-taught, desserts, sweets, chocolate, baking, ingredients, treats">
<h1 id="top_sweets">Sweets</h1>
<p>Navigate back to the <a href="recipes.html">Recipes</a> or over to the <a href="sauces.html">Sauces</a>,
<a href="sides.html">Sides</a>, or
<a href="meals.html">Meals</a> page for more recipes</p>
</header>
</section>
<!-- Content -->
<section>
<header class="main">
<h2 id="orange_oil_cake">Orange Oil Cake</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>5 ~ Eggs</li>
<li>3 c ~ Granulated Sugar</li>
<li>1 1/2 c ~ Orange Juice</li>
<li>3 1/2 c ~ Flour</li>
<li>2 tsp ~ Salt</li>
<li>1 1/2 c ~ Oil (fruity if possible)</li>
<li>1 1/2 tsp ~ Baking Powder</li>
<li>Orange Zest</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>Preheat the oven to 350 F</li>
<li>Grease and flour a 12 cup bundt pan</li>
<li>Whip the eggs and sugar until the mixture starts to lighten and cream</li>
<li>Add salt, zest, and powder</li>
<li>Alternate oil and flour (ending with flour)</li>
<li>Fold in the juice</li>
<li>Bake for 1 1/4 hours</li>
</ol>
</td>
</tr>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="banana_chocolate_mousse">Banana Chocolate Mousse</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>1 ~ Banana (ripe)</li>
<li>3 tbsp ~ Granulated Sugar</li>
<li>1 tsp ~ Vanilla</li>
<li>1 c ~ Dark Chocolate</li>
<li>1 c ~ Heavy Cream</li>
<li>2 ~ Egg Whites</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>Put the bowl and whisk into the freezer for ~10 min before you start</li>
<li>Mash the banana and melt the chocolate</li>
<li>Whip the egg whites until they foam</li>
<li>Separately, whip the cream until stiff adding in the sugar, salt, and vanilla as you go</li>
<li>Fold everything together and refrigerate for 2 hours</li>
</ol>
</td>
</tr>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="oatmeal_cookies">Oatmeal Cookies</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>2 1/2 c ~ Flour</li>
<li>3 1/2 c ~ Rolled Oates</li>
<li>1/2 tsp ~ Baking Soda</li>
<li>1/2 tsp ~ Baking Powder</li>
<li>1 c ~ Butter</li>
<li>1 c ~ Brown Sugar</li>
<li> 1/2 c ~ Granulated Sugar</li>
<li>2 ~ Eggs</li>
<li>1 c ~ Raisins</li>
<li>1 c ~ Walnuts</li>
<li>1 1/2 tsp ~ Vanilla</li>
<li> Cinnamon, nutmeg, salt</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>Preheat to 350 F</li>
<li>Combine softened butter, eggs, both sugars, and cream until color lightens</li>
<li>Add vanilla, powder, soda, salt, and spices</li>
<li>Add flour</li>
<li>Fold in oats, raisins, and nuts</li>
<li>Bake for 10 minutes</li>
</ol>
</td>
</tr>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="banana_bread_muffins">Banana Bread/Muffins</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>3 ~ Bananas</li>
<li>2 tbsp ~ Honey</li>
<li>1 1/2 tsp ~ Baking Soda</li>
<li>1 stick ~ Butter</li>
<li>3/4 c ~ Brown Sugar</li>
<li>1 tsp ~ Vanilla</li>
<li>2 ~ Eggs</li>
<li>2 c ~ Flour</li>
<li>Cinnamon, salt, nutmeg</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>Preheat to 350 F</li>
<li>Whisk together both sugars, softened butter, eggs until they lighten</li>
<li>Mash the bananas and mix them in</li>
<li>Incorporate vanilla and honey</li>
<li>Add salt, cinnamon, and nutmeg</li>
<li>Grease the pan, and bake for ~50 minutes</li>
</ol>
<ul>
<li>To turn into muffins, add a splash of milk, more baking soda, 1/2 c flour, an extra banana, 1/4 c coco powder</li>
<li>Bake at 450 F for 2 minutes and then lower to 350 F for 5 minutes</li>
</ul>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="orange_chocolate_cake">Orange Chocolate Cake</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>2 tbsp ~ Butter</li>
<li>1/2 c ~ Coco Powder</li>
<li>3 c ~ Flour</li>
<li>2 tsp ~ Baking Soda</li>
<li>2 c ~ Orange Juice</li>
<li>1 1/2 c ~ Sugar</li>
<li>3/4 c ~ Mayo</li>
<li>1 tsp ~ Vanilla</li>
<li>2 tbsp ~ Honey</li>
<li>Orange zest, salt, cinnamon</li>
</ol>
Glaze:
<ol>
<li>4:1 Powdered sugar and coco</li>
<li>3:1 Powders and orange juice</li>
<li>Add a little zest</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>Melt the butter and put a little coco powder in it</li>
<li>Use this paste on a 12 cup bundt pan</li>
<li>Preheat to 350 F</li>
<li>Mix sugar, mayo, honey, and vanilla</li>
<li>Add in salt and cinnamon</li>
<li>Alternate flour, coco, and orange juice</li>
<li>Bake for 45 minutes</li>
</ol>
Note:
<ul>
<li>This is sort of a chiffon, so you'll have to flip this out of the pan ~2 minutes after it comes out</li>
</ul>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="peanut_butter_kisses">Peanut Butter Kisses</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>1 1/2 c ~ Flour</li>
<li>1 tsp ~ Baking Soda</li>
<li>Salt</li>
<li>1 stick ~ Butter</li>
<li>1/2 c ~ Sugar</li>
<li>1/2 c ~ Brown Sugar</li>
<li>1/2 c ~ Peanut Butter</li>
<li>1 ~ Egg</li>
<li>1 tsp ~ Vanilla</li>
<li>48 ~ Hershey Kisses</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>Cream butter and sugars</li>
<li>Add egg and fluff until it lightens</li>
<li>Add peanut butter, vanilla, baking soda, salt</li>
<li>Mix in flour</li>
<li>cover and refrigerate until set (~1 hr)</li>
<li>Preheat to 350 F</li>
<li>Roll into balls, make sure they stay cold</li>
<li>Roll in sugar</li>
<li>Bake for 10 minutes</li>
<li>Immediately, press the kisses into the cookies after you pull them out</li>
</ol>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="cinnamon_rolls">Cinnamon Rolls</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>Dough
<ol>
<li>5 ~ Eggs (4 yolks, 1 whole)</li>
<li>1/4 c ~ Sugar</li>
<li>6 tbsp ~ Butter (melted)</li>
<li>3/4 c ~ Buttermilk</li>
<li>4 c ~ Flour</li>
<li>2 1/4 tsp ~ Yeast</li>
<li>Salt</li>
<li>Oil</li>
</ol>
Filling
<ol>
<li>1 c ~ Brown Sugar</li>
<li>1 1/2 tbsp ~ Butter</li>
<li>Cinnamon</li>
<li>Cumin</li>
<li>Nutmeg</li>
<li>Sumac</li>
</ol>
Icing
<ol>
<li>1/4 c ~ Cream Cheese</li>
<li>3 tbsp ~ Milk</li>
<li>1 1/2 c ~ Powdered Sugar</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>Mix the wets for the dough</li>
<li>Add 1/2 the flour and yeast</li>
<li>Alternate the rest of the flour and sugar</li>
<li>Knead until tacky (8 min)</li>
<li>Let double in a warm place for ~ 2 hours in an oiled bowl</li>
<li>Roll out the dough into the sheet and coat in the filling</li>
<li>Roll it up and cut it, and set them in a covered buttered dish to rest overnight in the fridge</li>
<li>Preheat to 350 F, and boil some water</li>
<li>Bake for 30 minutes</li>
<li>Mix the icing</li>
</ol>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="biengets">Biengets</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>1 1/4 c ~ Warm Milk</li>
<li>1 1/2 tsp ~ Dry Active Yeast</li>
<li>1/3 c ~ Sugar</li>
<li>3 1/2 c ~ Flour</li>
<li>1 ~ Egg</li>
<li>2 tbsp ~ Melted Butter</li>
<li>Powdered Sugar</li>
<li>Honey</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>Bloom the yeast in the milk with sugar</li>
<li>Mix in 1 1/2 c of the flour with butter and the egg</li>
<li>Slowly add the rest of the flour until the dough forms</li>
<li>Knead or hook the dough for around 6 minutes</li>
<li>Rest for 34-40 minutes, then punch down</li>
<li>Heat oil to 370 F</li>
<li>Roll into rectangles and cut into pillows</li>
<li>Fry until done, then coat in sugar and honey to serve immediately</li>
</ol>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="brownies">Brownies</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>1 1/2 c ~ Butter</li>
<li>8 oz ~ Chocolate</li>
<li>1 1/2 c ~ Sugar</li>
<li>4 ~ Eggs</li>
<li>2 c ~ Flour</li>
<li>1/2 c ~ Coco</li>
<li>2 tsp ~ Baking Powder</li>
<li>1 tsp ~ Baking Soda</li>
<li>1/2 tsp ~ Instant espresso</li>
<li>Salt</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>Preheat to 350 F</li>
<li>Melt chocolate with butter and sugar</li>
<li>Cool the chocolate mixture, then whip in eggs aggressively</li>
<li>Fold in the rest of the ingredients until smooth</li>
<li>Bake for 30-35 minutes</li>
</ol>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="hazelnut_praline_cookies">Hazelnut Praline
Cookies</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>Praline
<ol>
<li>1/2 c ~ Sugar</li>
<li>1 tbsp ~ Butter</li>
<li>1 c ~ Crushed Hazelnuts</li>
<li>Salt</li>
</ol>
Cookie
<ol>
<li>1 c ~ Butter</li>
<li>1 tsp ~ Baking Soda</li>
<li>1/2 tsp ~ Baking Powder</li>
<li>1 tsp ~ Vanilla</li>
<li>3/4 c ~ Brown Sugar</li>
<li>3/4 ~ Sugar</li>
<li>2 1/2 c ~ Flour</li>
<li>2 ~ Eggs</li>
<li>Salt</li>
<li>Nutmeg</li>
<li>Cloves</li>
<li>Cinnamon</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>Praline
<ol>
<li>Make a caramel</li>
<li>Add in the nuts</li>
<li>It should harden quickly (this isn't a typical caramel)</li>
</ol>
Cookie
<ol>
<li>Brown butter</li>
<li>Cream eggs, sugars, and butter until they lighten</li>
<li>Add in vanilla, powder, soda, salt, cinnamon, nutmeg, and cloves</li>
<li>Pulse praline and incorporate 3/4 of it into the flour</li>
<li>Add flour mix to butter mix</li>
<li>Form balls and top with remaining praline</li>
<li>Freeze for 1 hour, then bake at 350 F for 12 minutes</li>
</ol>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="quarte_epices_bundt_cake">Quarte Epices Bundt Cake</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>Cake
<ol>
<li>1 c ~ Water</li>
<li>4 oz ~ Pumpkin Puree</li>
<li>1/2 c ~ Oil</li>
<li>1/3 c ~ Molasses</li>
<li>1 tbsp ~ Apple Cider Vinegar</li>
<li>1 tsp ~ Vanilla</li>
<li>2 c ~ Flour</li>
<li>1 tsp ~ Baking Soda</li>
<li>1/2 tsp ~ Baking Powder</li>
<li>1/2 c ~ Brown Sugar</li>
<li>White Pepper</li>
<li>Ginger</li>
<li>Nutmeg</li>
<li>CLoves</li>
<li>Cinnamon</li>
</ol>
Frosting
<ol>
<li>Powdered Sugar</li>
<li>Cranberry Juice</li>
<li>Vanilla</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>Cake
<ol>
<li>Preheat to 350 F, then butter and flour the pan</li>
<li>Heat the water, and add in the wets</li>
<li>Mix in the drys</li>
<li>Bake for 30 minutes, then cool (in the pan) for 5 minutes</li>
</ol>
Frosting
<ol>
<li>Mix everything and pour over the top</li>
</ol>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="red_velvet_cake">Red Velvet Cake</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>2 1/2 c ~ Flour</li>
<li>1 1/2 c ~ Sugar</li>
<li>3 tbsp ~ Coco</li>
<li>1 tsp ~ Cinnamon</li>
<li>1 1/2 tsp ~ Baking Soda</li>
<li>2 ~ Eggs</li>
<li>1 1/2 c ~ Oil</li>
<li>1 c ~ Buttermilk</li>
<li>2 tsp ~ Vanilla</li>
<li>Food Dye (gel)</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>Preheat to 350 F</li>
<li>Combine the sugar and wet things</li>
<li>Add salt, coco, cinnamon, and baking soda</li>
<li>Add flour, dry things, and lots of food dye</li>
<li>Bake for ~30 min</li>
</ol>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="peanut_butter_cheesecake">Peanut Butter Cheesecake</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
Cheesecake:
<ol>
<li>3 packages (room temp) ~ Cream Cheese</li>
<li>1/2 c ~ Sugar</li>
<li>1 tsp ~ Vanilla</li>
<li>1 1/4 c ~ Peanut Butter</li>
<li>1/4 c ~ Sour Cream</li>
<li>1 1/4 c ~ Heavy Cream</li>
<li>3/4 c ~ POwdered Sugar</li>
<li>Salt</li>
</ol>
Cookie Base:
<ol>
<li>1 ~ Egg</li>
<li>1 c ~ Brown Sugar</li>
<li>1 c ~ Peanut Butter</li>
</ol>
Brownie Base:
<ol>
<li>2/3 c ~ Flour</li>
<li>1/2 tsp ~ Baking Powder</li>
<li>1/2 tsp ~ Vanilla</li>
<li>1 stick ~ Butter</li>
<li>1 c ~ Brown Sugar</li>
<li>2 ~ Eggs</li>
<li>2/3 c ~ Chocolate</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
Cheese Cake:
<ol>
<li>Whip heavy cream and powdered sugar to peaks</li>
<li>Add vanilla and salt</li>
<li>Separately, mix the sugars, cream cheese, and sour cream with peanut butter</li>
<li>Fold the two together</li>
</ol>
Cookie:
<ol>
<li>Preheat to 350 F</li>
<li>Grease a 9" round cake pan (spring form if you can)</li>
<li>Cream egg and sugar</li>
<li>Mix in peanut butter</li>
<li>Bake for 16 min without filling</li>
<li>After it has cooled, add filling and refrigerate for ~2.5 hr</li>
</ol>
Brownie:
<ol>
<li>Preheat to 350 F</li>
<li>Grease a 9" round cake pan (spring form if you can)</li>
<li>Cream butter, eggs, and sugar</li>
<li>Add salt, vanilla, baking powder, and melted chocolate</li>
<li>Add in flour</li>
<li>Bake for 25-30 min without filling</li>
<li>After it has cooled, add filling and refrigerate for ~2.5 hr</li>
</ol>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="peach_roulade">Peach Roulade</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td> Cake
<ol>
<li>4 ~ Eggs</li>
<li>2/3 c ~ Sugar</li>
<li>1 tsp ~ Syrup</li>
<li>3/4 c ~ Flour</li>
<li>Salt</li>
</ol>
Whipped Cream
<ol>
<li>2 c ~ Heavy Whipping Cream</li>
<li>1/2 c ~ Brown Sugar</li>
</ol>
Filling
<ol>
<li>2 tbsp ~ Butter</li>
<li>2 tbsp ~ Sugar</li>
<li>Cinnamon</li>
<li>Nutmeg</li>
<li>16 oz ~ Peaches</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>Preheat to 375 F, and line a 15x10x1 with parchment</li>
<li>Whip eggs and sugar until it's light</li>
<li>Fold in the rest of the cake ingredients</li>
<li>Bake for 10 minutes</li>
<li>Flip the cake out onto another sheet of parchment, and remove the o.g. parchment and replace it with a clean one</li>
<li>Roll the cake and chill it while you prepare the rest of the dish</li>
<li>Freeze the mixer bowl, then whip the cream and add in sugar</li>
<li>In a pot, melt the butter with everything else</li>
<li>Cook down the peaches until the sauce is nappe</li>
<li>You got the rest</li>
</ol>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="grasshopper_ice_cream_tart">Grasshopper Ice Cream Tart</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>Torte
<ol>
<li>1 pkg ~ Oreo's</li>
<li>1 pkg ~ Andes Menthe Thins</li>
<li>3 tbsp ~ Melted Butter</li>
<li>3 tbsp ~ Coco Powder</li>
<li>2 tbsp ~ Powdered Milk</li>
</ol>
Filling
<ol>
<li>1 quart ~ Heavy Cream</li>
<li>21 oz ~ Sweetened Condensed Milk</li>
<li>2 tbsp ~ Mint Extract</li>
<li>Green Food Dye</li>
<li>Mini Chocolate Chips</li>
</ol>
Ganache
<ol>
<li>1/2 c ~ Heavy Cream</li>
<li>1 tbsp ~ Light Corn Syrup</li>
<li>1/2 c ~ Chocolate</li>
<li>Salt</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
Torte
<ol>
<li>Pulse 2/3 of the oreo's with butter, milk powder, and coco until it feels like wet sand</li>
<li>Put into a spring form and freeze for 25 minutes</li>
</ol>
Filling
<ol>
<li>Whip everything until it's good.</li>
<li>Freeze until the crust is ready, then fold in crumbled thins and oreo's</li>
<li>Freeze for at least 10 hours</li>
</ol>
Ganache
<ol>
<li>Simmer cream, and mix in chocolate, syrup, and salt</li>
<li>Let sit for around 5 minutes until chocolate has melted</li>
<li>Stir, then pour over the cake</li>
<li>Freeze until the ganache is firm to the touch</li>
</ol>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="chocolate_peanut_butter_cake">Chocolate Peanut Butter Cake</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>Cake
<ol>
<li>2 c ~ Sugar</li>
<li>1/2 c ~ Melted Peanut Butter</li>
<li>1 3/4 c ~ Flour</li>
<li>3/4 c ~ Coco Powder</li>
<li>1 1/2 tsp ~ Baking Soda</li>
<li>1 1/2 tsp ~ Baking Powder</li>
<li>2 ~ Eggs</li>
<li>1 c ~ Milk</li>
<li>1/2 c ~ Oil</li>
<li>2 tsp ~ Vanilla</li>
<li>1 c ~ Hot Coffee</li>
<li>Chocolate Chips</li>
<li>Salt</li>
</ol>
Frosting
<ol>
<li>3 c ~ Powdered Sugar</li>
<li>1 c ~ Melted Peanut Butter</li>
<li>12 oz ~ Softened Cream Cheese</li>
<li>1/2 c ~ Butter</li>
<li>Salt</li>
<li>Vanilla</li>
<li>Milk</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td> Cake
<ol>
<li>Preheat to 350 F</li>
<li>Butter and coco (outside the listed amounts) a 9x13.</li>
<li>Beat eggs, sugar, and vanilla until it lightens</li>
<li>Mix in oil, peanut butter, milk, and coco powder</li>
<li>Alternate flour and coffee</li>
<li>Fold in chocolate chips</li>
<li>Bake for 60 minutes</li>
</ol>
Frosting
<ol>
<li>Cream butter, peanut butter, vanilla, and salt</li>
<li>Add in cream cheese</li>
<li>Mix in powdered sugar</li>
<li>Finish with milk</li>
</ol>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="tropical_rice_krispies">Tropical Rice Krispies</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>Krispie
<ol>
<li>1 box ~ Rice Krispies</li>
<li>2 bags ~ Mini Marshmallows</li>
<li>1/2 c ~ Butter</li>
<li>1/2 c ~ Freeze Dried Raspberries</li>
<li>Nutmeg</li>
<li>Sumac</li>
<li>White Chocolate Chips</li>
</ol>
Topping
<ol>
<li>Pineapple Juice</li>
<li>Pink Lemonade Powder</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>
<ol>
<li>Heat the krispies ingredients (minus the cereal, berries, chocolate) until combined</li>
<li>Remove from heat and fold in the cereal, berries, and chocolate</li>
<li>Layout in a pan</li>
<li>Mix the pineapple juice and lemonade powder and pour over the top</li>
<li>Rest for around 30 minutes</li>
</ol>
</td>
</tr>
</table>
</table>
</div>
</section>
<section>
<header class="main">
<h2 id="ginger_pumpkin_cheesecake">Ginger Pumpkin Cheesecake</h2>
</header>
<p><a href="#top_sweets">Back to top</a> </p>
<div class=" row">
<div class="col-6 col-12-small">
<h3>Ingredients</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>Crust
<ol>
<li>1 1/2 c ~ Ginger Snap Cookies</li>
<li>1/4 c ~ Butter</li>
<li>2 tbsp ~ Brown Sugar</li>
<li>Salt</li>
</ol>
Filling
<ol>
<li>24 oz ~ Cream Cheese</li>
<li>15 oz ~ Pumpkin Puree</li>
<li>3 ~ Eggs</li>
<li>1/4 c ~ Sour Cream</li>
<li>1 1/2 c ~ Sugar</li>
<li>1 tsp ~ Vanilla</li>
<li>Cinnamon</li>
<li>Nutmeg</li>
</ol>
</td>
</tr>
</table>
</div>
<div class="col-6 col-12-small">
<h3>Instructions</h3>
<table style="table-layout: fixed; width: 100%">
<tr>
<td>Crust
<ol>
<li>Process cookies, butter, salt, and sugar</li>
<li>Press into a spring form and freeze for 30 minutes</li>