-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2163 lines (1713 loc) · 210 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Cooked August</title>
<meta name="description" content="A month of cooking at home">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@rosano">
<meta name="twitter:title" content="Cooked August">
<meta name="twitter:description" content="A month of cooking at home">
<meta name="twitter:creator" content="@rosano">
<meta name="twitter:image:src" content="./cooked-august.gif">
<meta name="twitter:domain" content="rosano.ca">
<link rel="stylesheet" type="text/css" href="./ui-style.css">
<script src="./ui-behaviour.js"></script>
<script src="./d3.js"></script>
</head>
<body id="rsx-cooked_august">
<header>
<a id="RSXCookedAugustHomeLink" href="/">
<img src="./sharedLogoStandard.svg" alt="Rosano Logo">
</a>
<hr >
<a class="RSXSharedTweetButton" href="https://twitter.com/intent/tweet?text=Cooked August&url=https%3A%2F%2Frosano.ca%2Fcooked-august&via=rosano" target="_blank">
<img src="./sharedTweetButton.svg" alt="Share on Twitter">
</a>
</header>
<div id="RSXCookedAugustSidebar">
<section id="RSXCookedAugustIngredientBrowser" class="RSXCookedAugustHidden">
<div id="RSXCookedAugustIngredientBrowserContent">
</div>
<hr>
</section>
<section>
<a class="RSXCookedAugustThumbnail" href="#recipe-001" data-RSXCookedAugustBaseIngredients="dates;maple syrup;papaya;quinoa;salt;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-001.jpg" alt="Morning Quinoa">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-002" data-RSXCookedAugustBaseIngredients="beans;beet;lemon juice;mango powder;nuts;oil;pepper;salt;vinegar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-002.jpg" alt="Beet and Chickpea Salad">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-003" data-RSXCookedAugustBaseIngredients="bread;garlic;lemon juice;oil;peas;pepper;romano;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-003.jpg" alt="On Toast: Peas and Lemon">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-004" data-RSXCookedAugustBaseIngredients="butter;dill;egg;garlic;onion;pepper;romano;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-004.jpg" alt="Dill Omelette">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-005" data-RSXCookedAugustBaseIngredients="banana;butter;sugar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-005.jpg" alt="Caramelized Bananas">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-006" data-RSXCookedAugustBaseIngredients="bread;butter;cheddar;onion;pepper;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-006.jpg" alt="On Toast: Caramelized Onions And Cheddar">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-007" data-RSXCookedAugustBaseIngredients="banana;bread;cherries;jam;maple syrup">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-007.jpg" alt="On Toast: Fruit mix">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-008" data-RSXCookedAugustBaseIngredients="bread;butter;egg;la vache qui rit;pepper;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-008.jpg" alt="Egg Sandwich">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-009" data-RSXCookedAugustBaseIngredients="baby spinach;cheddar;cranberries;dates;dill;lemon juice;nuts;oil;sprouts;sunflower seeds;tomato;vinegar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-009.jpg" alt="Salad with Cheese and Nuts">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-010" data-RSXCookedAugustBaseIngredients="butter;dill;egg;pepper;salt;tomato">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-010.jpg" alt="Tomato Scrambled Eggs">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-011" data-RSXCookedAugustBaseIngredients="bread;butter;dates;onion;pepper;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-011.jpg" alt="On Toast: Caramelized Onions And Dates">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-012" data-RSXCookedAugustBaseIngredients="baby spinach;egg;oil;salt;sprouts;tomato;vinegar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-012.jpg" alt="Tomato and Spinach Salad">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-013" data-RSXCookedAugustBaseIngredients="banana;bread;nuts;peanut butter;sugar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-013.jpg" alt="Peanut Butter Banana Crisp">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-014" data-RSXCookedAugustBaseIngredients="dill;feta;garlic;lemon juice;oil;onion;pepper;pickles;potato;radish;salt;sour cream;vinegar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-014.jpg" alt="Tangy Goat Cheese and Dill Potato Salad">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-015" data-RSXCookedAugustBaseIngredients="ice cream;jam;nuts;peanut butter">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-015.jpg" alt="Sundae Simulation">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-016" data-RSXCookedAugustBaseIngredients="banana;bread;butter;cinnamon;egg;honey;maple syrup;sour cream;vanilla">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-016.jpg" alt="Banana French Toast">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-017" data-RSXCookedAugustBaseIngredients="baby spinach;coriander powder;dill;feta;garlic;lemon juice;oil;onion;pepper;quinoa;salt;sunflower seeds;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-017.jpg" alt="Quinoa Salad with Spinach, Feta, and Dill">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-018" data-RSXCookedAugustBaseIngredients="bread;butter;cheddar;maple syrup;sugar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-018.jpg" alt="Sweet Crisp Grilled Cheese">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-019" data-RSXCookedAugustBaseIngredients="cumin;honey;turmeric;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-019.jpg" alt="Turmeric Tea">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-020" data-RSXCookedAugustBaseIngredients="dill;lemon juice;potato;salt;sour cream">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-020.jpg" alt="Baked Sweet Potato with Dill Sauce">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-021" data-RSXCookedAugustBaseIngredients="baking soda;butter;coconut;egg;flour;salt;sugar;vanilla">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-021.jpg" alt="Coconut Chocolate Cookies">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-022" data-RSXCookedAugustBaseIngredients="cucumber;dill;honey;pepper;salt;vinegar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-022.jpg" alt="Sweet-and-Sour Cucumbers with Fresh Dill">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-023" data-RSXCookedAugustBaseIngredients="banana;cherries;cranberries">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-023.jpg" alt="Banana Porridge">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-024" data-RSXCookedAugustBaseIngredients="butter;capsicum;feta;garlic;oregano;pepper;potato;salt;tomato;tortillas">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-024.jpg" alt="Roasted Potatoes with Chilies">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-025" data-RSXCookedAugustBaseIngredients="maple syrup;peach;strawberries">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-025.jpg" alt="Chilled Strawberry Peach Mix">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-026" data-RSXCookedAugustBaseIngredients="almond milk;banana;bread;butter;cherries;chia seeds;lemon juice;peanut butter;vegetable spray;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-026.jpg" alt="Peanut Butter French Toast with Chia Cherry Compote">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-027" data-RSXCookedAugustBaseIngredients="basil;beans;garlic;lemon juice;oil;pepper;radish;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-027.jpg" alt="Basil/Radish Hummus">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-028" data-RSXCookedAugustBaseIngredients="cheddar;hummus;sprouts;tomato;tortillas">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-028.jpg" alt="Cheddar & Sprouts Wrap">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-029" data-RSXCookedAugustBaseIngredients="almond milk;chia seeds;cranberries;dates;maple syrup;strawberries">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-029.jpg" alt="Chia Seed Porridge">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-030" data-RSXCookedAugustBaseIngredients="cranberries;honey;nuts;oil;onion;peas;pepper;radish;salt;sour cream;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-030.jpg" alt="Spring Pea and Radish Salad">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-031" data-RSXCookedAugustBaseIngredients="kiwi;strawberries;yogurt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-031.jpg" alt="Kiwi Strawberry Yogurt">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-032" data-RSXCookedAugustBaseIngredients="avocado;bread;cheddar;hummus;sprouts;tomato">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-032.jpg" alt="Avocado, Hummus, Sprouts & Tomato Sandwich">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-033" data-RSXCookedAugustBaseIngredients="avocado;basil;lemon juice;oil;pepper;salt;yogurt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-033.jpg" alt="Avocado and Basil Greek Yogurt Parfait">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-034" data-RSXCookedAugustBaseIngredients="almond milk;banana;dates;kiwi;peach;strawberries">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-034.jpg" alt="Fruit Smoothie">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-035" data-RSXCookedAugustBaseIngredients="beans;garlic;lemon juice;onion;pepper;pickles;salt;sour cream;sunflower seeds;tortillas">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-035.jpg" alt="Chickpea Salad Wrap">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-036" data-RSXCookedAugustBaseIngredients="almond milk;avocado;banana;honey;vanilla">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-036.jpg" alt="Vanilla Avocado Banana Ice Cream">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-037" data-RSXCookedAugustBaseIngredients="avocado;banana;chia seeds;kiwi;lemon juice;peach;vanilla;yogurt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-037.jpg" alt="Avocado Fruit Salad with Chia Yogurt Dressing">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-038" data-RSXCookedAugustBaseIngredients="jam;kiwi;maple syrup;peach;quinoa;salt;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-038.jpg" alt="Kiwi Peach Quinoa">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-039" data-RSXCookedAugustBaseIngredients="bay leaves;beans;chili powder;cilantro;cumin;feta;garlic;oil;onion;onion;oregano;pepper;salt;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-039.jpg" alt="Black Bean Soup">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-040" data-RSXCookedAugustBaseIngredients="bread;butter;cheddar;dates;feta">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-040.jpg" alt="Date Grilled Cheese">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-041" data-RSXCookedAugustBaseIngredients="grapefruit;salt;sugar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-041.jpg" alt="Broiled Grapefruit">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-042" data-RSXCookedAugustBaseIngredients="cranberries;feta;grapefruit;pickles;sprouts;sunflower seeds;vinegar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-042.jpg" alt="Sour Sprouts">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-043" data-RSXCookedAugustBaseIngredients="bread;carrot;cheddar;cucumber;hummus;sprouts;tomato">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-043.jpg" alt="Sconset Sandwich">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-044" data-RSXCookedAugustBaseIngredients="banana;nuts;peanut butter">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-044.jpg" alt="Peanut Butter Banana Ice Cream">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-045" data-RSXCookedAugustBaseIngredients="banana;bread;honey;peanut butter">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-045.jpg" alt="Banana, Peanut Butter, & Honey on toast">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-046" data-RSXCookedAugustBaseIngredients="bread;lemon juice;nuts;oil;onion;ricotta;romano;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-046.jpg" alt="Scallion Pesto on Toast">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-047" data-RSXCookedAugustBaseIngredients="banana;dates;vanilla;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-047.jpg" alt="Banana Date Smoothie">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-048" data-RSXCookedAugustBaseIngredients="basil;capsicum;carrot;cucumber;garlic;hummus;pepper;pesto;ricotta;sprouts;tomato;vinegar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-048.jpg" alt="Pesto Sprouts Salad">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-049" data-RSXCookedAugustBaseIngredients="banana;nutella;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-049.jpg" alt="Banana Nutella Ice Cream">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-050" data-RSXCookedAugustBaseIngredients="coconut;oats;salt;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-050.jpg" alt="Coconut and Lime Oatmeal">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-051" data-RSXCookedAugustBaseIngredients="capsicum;cilantro;corn;cumin;garlic;oil;onion;oregano;peas;pepper;quinoa;ricotta;salt;tomato;vinegar;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-051.jpg" alt="Stuffed Roasted Peppers">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-052" data-RSXCookedAugustBaseIngredients="almond milk;banana;cookie dough;vanilla">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-052.jpg" alt="Banana Cookie Dough Ice Cream">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-053" data-RSXCookedAugustBaseIngredients="baking powder;butter;cheddar;egg;flour;jalapeño;pepper;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-053.jpg" alt="Whole-Wheat Jalapeño Cheddar Scones">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-054" data-RSXCookedAugustBaseIngredients="chili powder;cumin;fish;garlic powder;lime juice;oregano;pepper;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-054.jpg" alt="Spicy Broiled Tilapia with Lime
">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-055" data-RSXCookedAugustBaseIngredients="honey;nectarine;nuts;ricotta">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-055.jpg" alt="Broiled Nectarines with Ricotta and Honey">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-056" data-RSXCookedAugustBaseIngredients="bread;chili powder;egg;garlic;oregano;pepper;salt;tomato">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-056.jpg" alt="Egg Poached in Tomato Sauce">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-057" data-RSXCookedAugustBaseIngredients="bread;maple syrup;peanut butter;pickles">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-057.jpg" alt="Peanut Butter and Pickle Sandwich">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-058" data-RSXCookedAugustBaseIngredients="honey;vanilla;watermelon;yogurt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-058.jpg" alt="Fast Melon Sorbet">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-059" data-RSXCookedAugustBaseIngredients="almond milk;assam tea;cinnamon;cloves;fenugreek;honey;pepper;saffron;star anise;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-059.jpg" alt="Chai">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-060" data-RSXCookedAugustBaseIngredients="avocado;beans;celery;grapefruit;honey;leafy greens;mustard;oil;onion;pepper;salt;vinegar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-060.jpg" alt="Avocado Grapefruit and Lima Bean Salad">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-061" data-RSXCookedAugustBaseIngredients="cinnamon;grapefruit;honey;nuts;oats;salt;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-061.jpg" alt="Baklava Oatmeal">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-062" data-RSXCookedAugustBaseIngredients="cilantro;fish;garlic;lime juice;oil;pepper;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-062.jpg" alt="Cilantro Lime Tilapia">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-063" data-RSXCookedAugustBaseIngredients="banana;maple syrup;nectarine;yogurt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-063.jpg" alt="Banana Nectarine Soft Serve">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-064" data-RSXCookedAugustBaseIngredients="baking soda;butter;chocolate chips;egg;flour;honey;salt;sugar;vanilla">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-064.jpg" alt="Browned Butter Chocolate Chip Cookies">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-065" data-RSXCookedAugustBaseIngredients="chili powder;egg;garlic powder;lemon juice;mustard;oil;pepper;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-065.jpg" alt="Attempted Spicy Mayonnaise">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-066" data-RSXCookedAugustBaseIngredients="avocado;chili flakes;egg;fish;pepper;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-066.jpg" alt="Smoked Salmon Egg Stuffed Avocado">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-067" data-RSXCookedAugustBaseIngredients="avocado;chili powder;cilantro;cucumber;cumin;lemon juice;oil;onion;pepper;salt;tomato;yogurt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-067.jpg" alt="Avocado Salad with Yogurt Dressing">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-068" data-RSXCookedAugustBaseIngredients="almond milk;carrot;celery;chia seeds;chocolate covered coffee beans;cilantro;cucumber;nectarine;water;watermelon">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-068.jpg" alt="Vegetable Smoothie">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-069" data-RSXCookedAugustBaseIngredients="bread;butter;jam;peanut butter;ricotta">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-069.jpg" alt="Peanut Butter, Ricotta, Strawberry Jam Grilled Sandwich">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-070" data-RSXCookedAugustBaseIngredients="butter;camembert;egg;oats;onion;pepper;salt;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-070.jpg" alt="Savoury Oatmeal">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-071" data-RSXCookedAugustBaseIngredients="avocado;butter;chili flakes;egg;fish;pepper;salt;sprouts;tortillas">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-071.jpg" alt="Smoked Salmon & Egg Tortilla">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-072" data-RSXCookedAugustBaseIngredients="almond milk;avocado;honey;lime juice;salt;vanilla">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-072.jpg" alt="Avocado Milkshake">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-073" data-RSXCookedAugustBaseIngredients="lemon juice;maple syrup;nectarine;sugar;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-073.jpg" alt="Nectarine Compote">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-074" data-RSXCookedAugustBaseIngredients="asparagus;butter;camembert;egg">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-074.jpg" alt="Asparagus Scrambled Eggs">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-075" data-RSXCookedAugustBaseIngredients="avocado;camembert;cheddar;fish;mayonnaise;mushroom;pepper;salt;tomato;tortillas">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-075.jpg" alt="Tuna Melt Wraps with Avocado">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-076" data-RSXCookedAugustBaseIngredients="bread;butter;celery;cheddar;chili flakes;garlic;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-076.jpg" alt="Cheese Garlic Toast">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-077" data-RSXCookedAugustBaseIngredients="cilantro;egg;fish;mayonnaise;pickles;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-077.jpg" alt="Tuna Sandwich">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-078" data-RSXCookedAugustBaseIngredients="jam;peach;tapioca pearls;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-078.jpg" alt="Peach Tapioca with Strawberry Jam">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-079" data-RSXCookedAugustBaseIngredients="asparagus;butter;capsicum;celery;chili flakes;garlic;lemon juice;onion;pepper;salt;vegetable broth">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-079.jpg" alt="Asparagus Soup">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-080" data-RSXCookedAugustBaseIngredients="bread;chili flakes;honey;oats;ricotta">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-080.jpg" alt="Ricotta and Honey Sandwich">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-081" data-RSXCookedAugustBaseIngredients="cantaloupe;honey;peach;watermelon;yogurt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-081.jpg" alt="Honeyed Fruit Mashed in Yogurt">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-082" data-RSXCookedAugustBaseIngredients="butter;honey;jam;nuts;oats;peanut butter;salt;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-082.jpg" alt="Peanut Butter and Jelly Granola Bars">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-083" data-RSXCookedAugustBaseIngredients="celery;chia seeds;chocolate covered coffee beans;cilantro;cucumber;leafy greens;lemon juice;sprouts;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-083.jpg" alt="Green Smoothie">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-084" data-RSXCookedAugustBaseIngredients="banana;coconut;cranberries;oats">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-084.jpg" alt="Banana Coconut Cookies">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-085" data-RSXCookedAugustBaseIngredients="baking powder;butter;cardamom;egg;flour;nuts;peach;salt;strawberries;sugar;tapioca pearls">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-085.jpg" alt="Strawberry Peach Cobbler with Almond Topping">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-086" data-RSXCookedAugustBaseIngredients="bread;butter;egg;fish;garlic;mushroom;pepper;potato;salt;tomato">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-086.jpg" alt="Egg Sandwich with Mushroom Hash">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-087" data-RSXCookedAugustBaseIngredients="baby spinach;garlic;mushroom;mustard;nuts;onion;pear;quinoa;vinegar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-087.jpg" alt="Quinoa with Balsamic Roasted Mushrooms">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-088" data-RSXCookedAugustBaseIngredients="bbq sauce;bread;mushroom;oil">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-088.jpg" alt="Sloppy Mushroom Sandwich">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-089" data-RSXCookedAugustBaseIngredients="cinnamon;dates;oats;peanut butter;vanilla">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-089.jpg" alt="PB&J Bites">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-090" data-RSXCookedAugustBaseIngredients="baby spinach;camembert;cilantro;egg;mushroom;onion;pepper;romano;salt;tomato;yogurt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-090.jpg" alt="Mushroom Fritata">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-091" data-RSXCookedAugustBaseIngredients="baking powder;baking soda;banana;butter;cinnamon;egg;flour;nutella;oil;salt;sugar;vanilla">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-091.jpg" alt="Nutella Marble Banana Bread">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-092" data-RSXCookedAugustBaseIngredients="grapefruit;lemon juice;maple syrup;pear;strawberries;sugar;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-092.jpg" alt="Strawberry Grapefruit Granita">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-093" data-RSXCookedAugustBaseIngredients="bread;butter;camembert;cheddar;garlic;mushroom;oil;onion;pepper;salt;thyme;vinegar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-093.jpg" alt="Mushroom Melt">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-094" data-RSXCookedAugustBaseIngredients="cantaloupe;honey;watermelon;yogurt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-094.jpg" alt="Melon Smoothie">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-095" data-RSXCookedAugustBaseIngredients="butter;capsicum;cheddar;cilantro;corn;mushroom;onion;tortillas">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-095.jpg" alt="Corn Mushroom Quesadilla">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-096" data-RSXCookedAugustBaseIngredients="bread;camembert;jam;nuts;pepper">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-096.jpg" alt="Toasted Camembert, Walnut, and Fig Tartine">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-097" data-RSXCookedAugustBaseIngredients="brussel sprouts;butter;egg;garlic;lemon juice;olives;pepper;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-097.jpg" alt="Brussels Sprout Hash and Eggs">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-098" data-RSXCookedAugustBaseIngredients="asafoetida;cumin;curry leaves;flour;ginger;mustard seeds;oil;salt;turmeric;water;yogurt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-098.jpg" alt="Maharashtrian Kadhi">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-099" data-RSXCookedAugustBaseIngredients="cumin;moong dal;oil;rice;salt;turmeric;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-099.jpg" alt="Moong Dal Khichdi">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-100" data-RSXCookedAugustBaseIngredients="cardamom;condensed milk;cream;mango;milk;rose water;saffron">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-100.jpg" alt="Mango Kulfi">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-101" data-RSXCookedAugustBaseIngredients="basil;bread;butter;cheddar;chili flakes;corn;oil;oregano;pepper;salt">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-101.jpg" alt="Corn Cheese Toast">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-102" data-RSXCookedAugustBaseIngredients="butter;chocolate chips;condensed milk;nuts">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-102.jpg" alt="Fudge">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-103" data-RSXCookedAugustBaseIngredients="butter;cardamom;milk;moong dal;nuts;raisins;sugar;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-103.jpg" alt="Moong Dal Halwa">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-104" data-RSXCookedAugustBaseIngredients="baby spinach;celery;ginger;mushroom;oil;soy sauce">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-104.jpg" alt="Celery, Mushroom, Greens Stir Fry">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-105" data-RSXCookedAugustBaseIngredients="bay leaves;cardamom;chili pepper;cloves;cumin;oil;rice;salt;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-105.jpg" alt="Jeera Rice">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-106" data-RSXCookedAugustBaseIngredients="almond milk;blueberries;custard powder;papaya;sugar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-106.jpg" alt="Fruit Custard">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-107" data-RSXCookedAugustBaseIngredients="carrot;honey;lemon juice;papaya;water">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-107.jpg" alt="Carrot Papaya Juice">
</a>
<a class="RSXCookedAugustThumbnail" href="#recipe-108" data-RSXCookedAugustBaseIngredients="almond milk;butter;cardamom;carrot;nuts;raisins;saffron;sugar">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-108.jpg" alt="Carrot Halwa">
</a>
</section>
<hr style="visibility: hidden;">
<hr style="visibility: hidden;">
</div>
<div id="RSXCookedAugustContainer">
<section>
<h1>
Cooked August
</h1>
<p>
Learning to cook feels like a superpower. In a single process, I can simultaneously save money, understand what I eat, engage with all my senses, work with my hands (in a non-digital domain), practice creative and spontaneous thinking, eat well, have virtually limitless choice, etc... Historically, it has been a challenge for me to invest the time needed to habituate it, so I decided to focus on it for a month; turning it into a web-projecty thing added extra motivation.
</p>
<p>
My initial parameters were to cook everyday, allow myself to eat out if I didn't have time, favour ingredients that I already had, try a diverse range of techniques, and start with a simple recipe book - I liked Leanne Brown's recipes (<em><a href="https://www.leannebrown.com/all-about-good-and-cheap">Good and Cheap</a></em>; <em><a href="https://books.leannebrown.com/from-scratch.pdf">From Scratch</a></em>) because they were unintimidating and not limited to a particular style of cooking or cuisine.
</p>
</section>
<section>
<p id="RSXCookedAugustFilterStatus">
Everything below was made in August 2014<span id="RSXCookedAugustFilterDescription"></span>. <span id="RSXCookedAugustFilterClearButton" class="RSXCookedAugustHidden" onclick="RSXCookedAugustClearFilter()">[x]</span>
</p>
<div id="RSXCookedAugustRecipeBrowser">
<article id="recipe-001" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="dates;maple syrup;papaya;quinoa;salt;water" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-001.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-001" itemprop="name">Morning Quinoa</a></strong>
<span>(via <a href="https://books.leannebrown.com/from-scratch.pdf" target="_blank">From Scratch</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">dates</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">papaya</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">quinoa</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">maple syrup</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">water</span>
</p>
</div>
</article>
<article id="recipe-002" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="beans;beet;lemon juice;mango powder;nuts;oil;pepper;salt;vinegar" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-002.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-002" itemprop="name">Beet and Chickpea Salad</a></strong>
<span>(via <a href="https://www.leannebrown.com/all-about-good-and-cheap" target="_blank">Good and Cheap</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">beet</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">beans (chickpeas)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">nuts (cashews)</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">lemon juice</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">mango powder</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">oil (olive oil)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">pepper</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">vinegar</span>
</p>
<p>cashews weren’t the right substitute here… peanuts were perfect</p>
</div>
</article>
<article id="recipe-003" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="bread;garlic;lemon juice;oil;peas;pepper;romano;salt" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-003.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-003" itemprop="name">On Toast: Peas and Lemon</a></strong>
<span>(via <a href="https://www.leannebrown.com/all-about-good-and-cheap" target="_blank">Good and Cheap</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">garlic</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">peas</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">bread</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">romano</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">lemon juice</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">oil (olive oil)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">pepper</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>
</p>
</div>
</article>
<article id="recipe-004" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="butter;dill;egg;garlic;onion;pepper;romano;salt" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-004.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-004" itemprop="name">Dill Omelette</a></strong>
<span>(via <a href="https://www.leannebrown.com/all-about-good-and-cheap" target="_blank">Good and Cheap</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">dill</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">garlic</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">onion (red onion)</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">butter</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">romano</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">egg</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">pepper</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>
</p>
<p>little browned, but still better than any omelette I’ve made in the past</p>
</div>
</article>
<article id="recipe-005" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="banana;butter;sugar" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-005.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-005" itemprop="name">Caramelized Bananas</a></strong>
<span>(via <a href="https://www.leannebrown.com/all-about-good-and-cheap" target="_blank">Good and Cheap</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">banana</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">butter</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">sugar (brown sugar)</span>
</p>
<p>too much heat and the sugar burns, too little and it doesn’t melt</p>
</div>
</article>
<article id="recipe-006" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="bread;butter;cheddar;onion;pepper;salt" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-006.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-006" itemprop="name">On Toast: Caramelized Onions And Cheddar</a></strong>
<span>(via <a href="https://www.leannebrown.com/all-about-good-and-cheap" target="_blank">Good and Cheap</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">onion (red onion)</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">bread</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">butter</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">cheddar</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">pepper</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>
</p>
</div>
</article>
<article id="recipe-007" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="banana;bread;cherries;jam;maple syrup" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-007.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-007" itemprop="name">On Toast: Fruit mix</a></strong>
<span>(via the pantry)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">banana</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">cherries</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">bread</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">jam</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">maple syrup</span>
</p>
<p> </p>
</div>
</article>
<article id="recipe-008" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="bread;butter;egg;la vache qui rit;pepper;salt" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-008.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-008" itemprop="name">Egg Sandwich</a></strong>
<span>(via the pantry)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">bread</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">butter</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">la vache qui rit</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">egg</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">pepper</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>
</p>
<p>hard to taste the butter or cheese</p>
</div>
</article>
<article id="recipe-009" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="baby spinach;cheddar;cranberries;dates;dill;lemon juice;nuts;oil;sprouts;sunflower seeds;tomato;vinegar" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-009.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-009" itemprop="name">Salad with Cheese and Nuts</a></strong>
<span>(via the pantry)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">baby spinach</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">cranberries</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">dates</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">dill</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">sprouts</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">tomato</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">cheddar</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">nuts (cashews)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">sunflower seeds</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">lemon juice</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">oil (olive oil)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">vinegar</span>
</p>
<p>the dill was kicking too much</p>
</div>
</article>
<article id="recipe-010" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="butter;dill;egg;pepper;salt;tomato" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-010.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-010" itemprop="name">Tomato Scrambled Eggs</a></strong>
<span>(via <a href="https://www.leannebrown.com/all-about-good-and-cheap" target="_blank">Good and Cheap</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">dill</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">tomato</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">butter</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">egg</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">pepper</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>
</p>
</div>
</article>
<article id="recipe-011" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="bread;butter;dates;onion;pepper;salt" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-011.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-011" itemprop="name">On Toast: Caramelized Onions And Dates</a></strong>
<span>(via the pantry)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">dates</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">onion (red onion)</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">bread</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">butter</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">pepper</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>
</p>
<p>I made the mistake of not washing my pan as soon as this was ready; I am unsure if it was the dates, the onion, or the toast that was burned and stuck to the pan…</p>
</div>
</article>
<article id="recipe-012" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="baby spinach;egg;oil;salt;sprouts;tomato;vinegar" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-012.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-012" itemprop="name">Tomato and Spinach Salad</a></strong>
<span>(via <a href="http://eatingrichly.com/10/tomato-and-spinach-salad-recipe/" target="_blank">eatingrichly.com</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">baby spinach</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">sprouts</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">tomato</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">egg</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">oil (olive oil)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">vinegar</span>
</p>
</div>
</article>
<article id="recipe-013" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="banana;bread;nuts;peanut butter;sugar" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-013.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-013" itemprop="name">Peanut Butter Banana Crisp</a></strong>
<span>(via the pantry)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">banana</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">bread</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">nuts (crushed peanuts)</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">peanut butter</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">sugar (brown sugar)</span>
</p>
</div>
</article>
<article id="recipe-014" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="dill;feta;garlic;lemon juice;oil;onion;pepper;pickles;potato;radish;salt;sour cream;vinegar" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-014.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-014" itemprop="name">Tangy Goat Cheese and Dill Potato Salad</a></strong>
<span>(via <a href="http://www.rachaelray.com/recipe.php?recipe_id=2841" target="_blank">rachaelray.com</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">dill</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">garlic</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">onion (scallions)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">pickles</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">potato</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">radish</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">feta</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">sour cream</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">lemon juice</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">oil (olive oil)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">pepper</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">vinegar (white)</span>
</p>
</div>
</article>
<article id="recipe-015" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="ice cream;jam;nuts;peanut butter" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-015.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-015" itemprop="name">Sundae Simulation</a></strong>
<span>(via the pantry)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">ice cream</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">nuts (crushed peanuts)</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">jam</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">peanut butter (melted)</span>
</p>
<p>after pouring the peanut butter, should have put the bowl in the freezer so that it can harden a bit. much less jam required; saving some for later</p>
</div>
</article>
<article id="recipe-016" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="banana;bread;butter;cinnamon;egg;honey;maple syrup;sour cream;vanilla" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-016.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-016" itemprop="name">Banana French Toast</a></strong>
<span>(via the pantry)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">banana</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">bread</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">butter</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">sour cream</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">egg</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">cinnamon</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">honey</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">maple syrup</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">vanilla</span>
</p>
<p>like grilled cheese, with banana</p>
</div>
</article>
<article id="recipe-017" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="baby spinach;coriander powder;dill;feta;garlic;lemon juice;oil;onion;pepper;quinoa;salt;sunflower seeds;water" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-017.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-017" itemprop="name">Quinoa Salad with Spinach, Feta, and Dill</a></strong>
<span>(via <a href="http://pixelatedcrumb.com/2012/04/29/quinoa-salad-with-spinach-feta-and-dill/" target="_blank">pixelatedcrumb.com</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">baby spinach</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">dill</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">garlic</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">onion (scallions)</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">quinoa</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">feta</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">sunflower seeds [toasted]</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">coriander powder</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">lemon juice</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">oil (olive oil)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">pepper</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">water</span>
</p>
<p>should have listened to the quinoa and not the timer; was overcooked and a little soggy</p>
</div>
</article>
<article id="recipe-018" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="bread;butter;cheddar;maple syrup;sugar" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-018.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-018" itemprop="name">Sweet Crisp Grilled Cheese</a></strong>
<span>(via the pantry)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">bread</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">butter</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">cheddar</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">maple syrup</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">sugar (brown sugar)</span>
</p>
</div>
</article>
<article id="recipe-019" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="cumin;honey;turmeric;water" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-019.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-019" itemprop="name">Turmeric Tea</a></strong>
<span>(via the pantry)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">cumin (seeds)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">honey</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">turmeric</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">water</span>
</p>
</div>
</article>
<article id="recipe-020" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="dill;lemon juice;potato;salt;sour cream" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-020.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-020" itemprop="name">Baked Sweet Potato with Dill Sauce</a></strong>
<span>(via <a href="http://chowhound.chow.com/topics/499976#3501191" target="_blank">chowhound.chow.com</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">dill</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">potato (sweet)</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">sour cream</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">lemon juice</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>
</p>
</div>
</article>
<article id="recipe-021" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="baking soda;butter;coconut;egg;flour;salt;sugar;vanilla" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-021.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-021" itemprop="name">Coconut Chocolate Cookies</a></strong>
<span>(via <a href="https://www.leannebrown.com/all-about-good-and-cheap" target="_blank">Good and Cheap</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">coconut (dry shredded) chocolate chips</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">butter</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">egg</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">baking soda</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">flour</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">sugar (brown sugar)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">vanilla</span>
</p>
</div>
</article>
<article id="recipe-022" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="cucumber;dill;honey;pepper;salt;vinegar" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-022.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-022" itemprop="name">Sweet-and-Sour Cucumbers with Fresh Dill</a></strong>
<span>(via <a href="http://www.epicurious.com/recipes/food/views/Sweet-and-Sour-Cucumbers-with-Fresh-Dill-109713" target="_blank">epicurious.com</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">cucumber</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">dill</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">honey</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">pepper</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">vinegar (white)</span>
</p>
<p>bland…</p>
</div>
</article>
<article id="recipe-023" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="banana;cherries;cranberries" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-023.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-023" itemprop="name">Banana Porridge</a></strong>
<span>(via the pantry)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">banana</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">cherries</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">cranberries</span>
</p>
<p>I could have used some crunch, maybe chia seeds if I had them</p>
</div>
</article>
<article id="recipe-024" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="butter;capsicum;feta;garlic;oregano;pepper;potato;salt;tomato;tortillas" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-024.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-024" itemprop="name">Roasted Potatoes with Chilies</a></strong>
<span>(via <a href="https://www.leannebrown.com/all-about-good-and-cheap" target="_blank">Good and Cheap</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">capsicum</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">garlic</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">potato</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">tomato</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">tortillas</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">butter</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">feta</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">oregano</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">pepper</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>
</p>
</div>
</article>
<article id="recipe-025" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="maple syrup;peach;strawberries" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-025.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-025" itemprop="name">Chilled Strawberry Peach Mix</a></strong>
<span>(via the pantry)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">peach</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">strawberries</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">maple syrup</span>
</p>
<p>a friend in Montréal made this and called it ‘cheating’</p>
</div>
</article>
<article id="recipe-026" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="almond milk;banana;bread;butter;cherries;chia seeds;lemon juice;peanut butter;vegetable spray;water" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-026.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-026" itemprop="name">Peanut Butter French Toast with Chia Cherry Compote</a></strong>
<span>(via <a href="http://www.cravingthirty.com/pbfrenchtoast/" target="_blank">cravingthirty.com</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">banana</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">cherries</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">bread</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">butter</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">chia seeds</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">almond milk</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">lemon juice</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">peanut butter</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">vegetable spray</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">water</span>
</p>
<p>placing soaked bread on bare hot pan seemed too dry; with butter seemed to make it stick; with non-stick vegetable spray was not too bad with some pressing and on lowered heat</p>
</div>
</article>
<article id="recipe-027" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="basil;beans;garlic;lemon juice;oil;pepper;radish;salt" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-027.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-027" itemprop="name">Basil/Radish Hummus</a></strong>
<span>(via <a href="http://chickinthekitchen.com/2010/07/12/hummus-with-basil-and-radish/" target="_blank">chickinthekitchen.com</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">basil</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">garlic</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">radish</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">beans (chickpeas)</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">lemon juice</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">oil (olive oil)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">pepper</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>
</p>
</div>
</article>
<article id="recipe-028" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="cheddar;hummus;sprouts;tomato;tortillas" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-028.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-028" itemprop="name">Cheddar & Sprouts Wrap</a></strong>
<span>(via the pantry)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">sprouts</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">tomato</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">tortillas</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">cheddar</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">hummus</span>
</p>
</div>
</article>
<article id="recipe-029" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="almond milk;chia seeds;cranberries;dates;maple syrup;strawberries" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-029.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-029" itemprop="name">Chia Seed Porridge</a></strong>
<span>(via <a href="http://www.therawchef.com/trc_recipes/chia-seed-porridge-2/" target="_blank">therawchef.com</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">cranberries</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">dates</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">strawberries</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">chia seeds</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">almond milk</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">maple syrup</span>
</p>
<p>I like to leave the chia + milk in the fridge overnight</p>
</div>
</article>
<article id="recipe-030" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="cranberries;honey;nuts;oil;onion;peas;pepper;radish;salt;sour cream;water" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-030.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-030" itemprop="name">Spring Pea and Radish Salad</a></strong>
<span>(via <a href="http://www.wiveswithknives.net/2010/06/13/spring-pea-and-radish-salad/" target="_blank">wiveswithknives.net</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">cranberries</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">onion (scallions)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">peas</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">radish</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">sour cream</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">nuts (cashews)</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">honey</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">oil (olive oil)</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">pepper</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">salt</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">water</span>
</p>
</div>
</article>
<article id="recipe-031" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="kiwi;strawberries;yogurt" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-031.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-031" itemprop="name">Kiwi Strawberry Yogurt</a></strong>
<span>(via <a href="https://www.leannebrown.com/all-about-good-and-cheap" target="_blank">Good and Cheap</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">kiwi</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">strawberries</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">yogurt</span>
</p>
</div>
</article>
<article id="recipe-032" class="RSXCookedAugustRecipe" data-RSXCookedAugustBaseIngredients="avocado;bread;cheddar;hummus;sprouts;tomato" itemscope itemtype="http://schema.org/Recipe">
<img src="https://static.rosano.ca/rcreativ/open-cooked-august/photos/recipe-032.jpg" />
<div class="RSXCookedAugustRecipeDetails">
<p>
<strong><a href="#recipe-032" itemprop="name">Avocado, Hummus, Sprouts & Tomato Sandwich</a></strong>
<span>(via <a href="http://keepitskinny.wordpress.com/2011/04/28/avocado-hummus-sprouts-tomato-sandwich/" target="_blank">keepitskinny.wordpress.com</a>)</span>
</p>
<p>
<span class="RSXCookedAugustIngredient" itemprop="ingredients">avocado</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">sprouts</span>, <span class="RSXCookedAugustIngredient" itemprop="ingredients">tomato</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">bread</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">cheddar</span>; <span class="RSXCookedAugustIngredient" itemprop="ingredients">hummus</span>
</p>
</div>
</article>