forked from bryangruneberg/demo-nextdrupal-ai
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposetheweb.json
2861 lines (2861 loc) · 175 KB
/
composetheweb.json
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
{
"jsonapi": {
"version": "1.0",
"meta": {
"links": {
"self": {
"href": "http:\/\/jsonapi.org\/format\/1.0\/"
}
}
}
},
"data": [
{
"type": "node--article",
"id": "e2e9525c-63c0-4f69-9594-bed91b017d92",
"links": {
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/e2e9525c-63c0-4f69-9594-bed91b017d92?resourceVersion=id%3A36"
}
},
"attributes": {
"drupal_internal__nid": 18,
"drupal_internal__vid": 36,
"langcode": "en",
"revision_timestamp": "2023-04-24T20:48:01+00:00",
"revision_log": null,
"status": true,
"title": "Give your oatmeal the ultimate makeover",
"created": "2023-04-24T20:48:01+00:00",
"changed": "2023-04-24T20:48:01+00:00",
"promote": true,
"sticky": false,
"default_langcode": true,
"revision_translation_affected": null,
"moderation_state": "published",
"path": {
"alias": "\/articles\/give-your-oatmeal-the-ultimate-makeover",
"pid": 101,
"langcode": "en"
},
"content_translation_source": "und",
"content_translation_outdated": false,
"body": {
"value": "\u003Cp\u003E\nIt is vegan, gluten-free, low in fat, high in fiber, and can even lower cholesterol - but oatmeal is boring, right? Well, before you write off that boring jar of oats, you might want to take inspiration from our topping ideas that will take your oatmeal from bland to creatively delicious in just a few minutes.\n\u003C\/p\u003E\n\n\u003Cp\u003E\nCall it oatmeal, porridge, hot cereal, or just plain oats, it is loved the world over; but recently, the humble oat is getting a funky makeover. Long gone are the days of stodgy breakfast bowls of thick gloop, because oats are getting served up as a delicious meal that can suit any time of the day. Trendy build-your-own oatmeal bars are popping up, and they are providing the ultimate oatmeal experience. Diners can choose their oats to be made with milk or water and then go to town with their choice of favorite toppings - sweet, savory, or even spicy.\n\u003C\/p\u003E\n\n\u003Cp\u003E\nIt sounds great, doesn\u2019t it? So before you close the cupboard door on that bland-looking jar of oats, we think you should try some of these scrumptious topping ideas to inspire your very own oatmeal makeover.\n\u003C\/p\u003E\n\n\n\u003Ch2\u003ESoaked dried fruit\u003C\/h2\u003E\n\n\u003Cp\u003E\nSometimes plain dried fruit can be a bit chewy and harsh when combined with creamy oats. But if you simply soak your dried fruit in orange juice overnight, they develop a tang, and they swell up, making them softer and even more delicious. Plus the splash of color can really brighten your day.\n\u003C\/p\u003E\n\n\n\u003Ch2\u003EPorridge cr\u00e8me br\u00fbl\u00e9e\u003C\/h2\u003E\n\n\u003Cp\u003E\nSo simple - but why has no one thought of it before? Put your cooked oatmeal into a ramekin, sprinkle with sugar, and pop under the grill. The sugar will harden, giving you the delight of cracking through the surface and scooping out the creamy deliciousness beneath. If you are really professional, you can use a blow torch.\n\u003C\/p\u003E\n\n\u003Ch2\u003ESuper seeds\u003C\/h2\u003E\n\n\u003Cp\u003E\nFor a more savory meal option, cook your oats with water, a little salt, and sprinkle with toasted seeds. You can choose any that you enjoy, but pumpkin seeds, sesame, linseed, and sunflower seeds are especially good. Some supermarkets also sell seed blends to make the job even easier.\n\u003C\/p\u003E\n\n\u003Ch2\u003EDeconstructed carrot cake\u003C\/h2\u003E\n\n\u003Cp\u003E\nCook your oats with grated carrots and a little sugar, then top with a sprinkle of cinnamon, chopped walnuts, and a dollop of sweetened cream cheese. If you don\u2019t love this, there\u2019s something wrong with your taste buds.\n\u003C\/p\u003E\n\n\u003Ch2\u003EDark chocolate\u003C\/h2\u003E\n\n\u003Cp\u003E\nThis low-sugar delight will meet all of those chocolate cravings and is the perfect dessert. Add a spoonful of cocoa to your oatmeal as it cooks, then top with a few squares of dark chocolate. As it melts, simply swirl into the bowl as artfully as you can. If you are really decadent, a squirt of whipped cream will add further delights.\n\u003C\/p\u003E\n",
"format": "basic_html",
"processed": "\u003Cp\u003E\nIt is vegan, gluten-free, low in fat, high in fiber, and can even lower cholesterol - but oatmeal is boring, right? Well, before you write off that boring jar of oats, you might want to take inspiration from our topping ideas that will take your oatmeal from bland to creatively delicious in just a few minutes.\n\u003C\/p\u003E\n\u003Cp\u003E\nCall it oatmeal, porridge, hot cereal, or just plain oats, it is loved the world over; but recently, the humble oat is getting a funky makeover. Long gone are the days of stodgy breakfast bowls of thick gloop, because oats are getting served up as a delicious meal that can suit any time of the day. Trendy build-your-own oatmeal bars are popping up, and they are providing the ultimate oatmeal experience. Diners can choose their oats to be made with milk or water and then go to town with their choice of favorite toppings - sweet, savory, or even spicy.\n\u003C\/p\u003E\n\u003Cp\u003E\nIt sounds great, doesn\u2019t it? So before you close the cupboard door on that bland-looking jar of oats, we think you should try some of these scrumptious topping ideas to inspire your very own oatmeal makeover.\n\u003C\/p\u003E\n\u003Ch2\u003ESoaked dried fruit\u003C\/h2\u003E\n\u003Cp\u003E\nSometimes plain dried fruit can be a bit chewy and harsh when combined with creamy oats. But if you simply soak your dried fruit in orange juice overnight, they develop a tang, and they swell up, making them softer and even more delicious. Plus the splash of color can really brighten your day.\n\u003C\/p\u003E\n\u003Ch2\u003EPorridge cr\u00e8me br\u00fbl\u00e9e\u003C\/h2\u003E\n\u003Cp\u003E\nSo simple - but why has no one thought of it before? Put your cooked oatmeal into a ramekin, sprinkle with sugar, and pop under the grill. The sugar will harden, giving you the delight of cracking through the surface and scooping out the creamy deliciousness beneath. If you are really professional, you can use a blow torch.\n\u003C\/p\u003E\n\u003Ch2\u003ESuper seeds\u003C\/h2\u003E\n\u003Cp\u003E\nFor a more savory meal option, cook your oats with water, a little salt, and sprinkle with toasted seeds. You can choose any that you enjoy, but pumpkin seeds, sesame, linseed, and sunflower seeds are especially good. Some supermarkets also sell seed blends to make the job even easier.\n\u003C\/p\u003E\n\u003Ch2\u003EDeconstructed carrot cake\u003C\/h2\u003E\n\u003Cp\u003E\nCook your oats with grated carrots and a little sugar, then top with a sprinkle of cinnamon, chopped walnuts, and a dollop of sweetened cream cheese. If you don\u2019t love this, there\u2019s something wrong with your taste buds.\n\u003C\/p\u003E\n\u003Ch2\u003EDark chocolate\u003C\/h2\u003E\n\u003Cp\u003E\nThis low-sugar delight will meet all of those chocolate cravings and is the perfect dessert. Add a spoonful of cocoa to your oatmeal as it cooks, then top with a few squares of dark chocolate. As it melts, simply swirl into the bowl as artfully as you can. If you are really decadent, a squirt of whipped cream will add further delights.\n\u003C\/p\u003E\n",
"summary": null
}
},
"relationships": {
"node_type": {
"data": {
"type": "node_type--node_type",
"id": "20e50028-136e-4fce-91a8-5bf465e49cbb",
"meta": {
"drupal_internal__target_id": "article"
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/e2e9525c-63c0-4f69-9594-bed91b017d92\/node_type?resourceVersion=id%3A36"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/e2e9525c-63c0-4f69-9594-bed91b017d92\/relationships\/node_type?resourceVersion=id%3A36"
}
}
},
"revision_uid": {
"data": {
"type": "user--user",
"id": "13d3e25c-0c23-40b9-9a03-1b75200f8710",
"meta": {
"drupal_internal__target_id": 4
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/e2e9525c-63c0-4f69-9594-bed91b017d92\/revision_uid?resourceVersion=id%3A36"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/e2e9525c-63c0-4f69-9594-bed91b017d92\/relationships\/revision_uid?resourceVersion=id%3A36"
}
}
},
"uid": {
"data": {
"type": "user--user",
"id": "13d3e25c-0c23-40b9-9a03-1b75200f8710",
"meta": {
"drupal_internal__target_id": 4
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/e2e9525c-63c0-4f69-9594-bed91b017d92\/uid?resourceVersion=id%3A36"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/e2e9525c-63c0-4f69-9594-bed91b017d92\/relationships\/uid?resourceVersion=id%3A36"
}
}
},
"field_media_image": {
"data": {
"type": "media--image",
"id": "eb80b3ad-5e85-4900-b2e8-902286b17157",
"meta": {
"drupal_internal__target_id": 17
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/e2e9525c-63c0-4f69-9594-bed91b017d92\/field_media_image?resourceVersion=id%3A36"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/e2e9525c-63c0-4f69-9594-bed91b017d92\/relationships\/field_media_image?resourceVersion=id%3A36"
}
}
},
"field_tags": {
"data": [
{
"type": "taxonomy_term--tags",
"id": "0ea414a5-fb88-4dd0-bc4a-4de710b8cb6e",
"meta": {
"drupal_internal__target_id": 27
}
},
{
"type": "taxonomy_term--tags",
"id": "314fae54-6e1f-42f5-af8a-ee0b1d77d019",
"meta": {
"drupal_internal__target_id": 28
}
},
{
"type": "taxonomy_term--tags",
"id": "fbd81365-ac5a-444c-9326-a2f7dc6183da",
"meta": {
"drupal_internal__target_id": 19
}
},
{
"type": "taxonomy_term--tags",
"id": "c4eba703-e663-482d-ac93-d5319748fbd4",
"meta": {
"drupal_internal__target_id": 4
}
},
{
"type": "taxonomy_term--tags",
"id": "43a5cd61-b8b8-49ec-82f2-9d299f3aacc2",
"meta": {
"drupal_internal__target_id": 10
}
}
],
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/e2e9525c-63c0-4f69-9594-bed91b017d92\/field_tags?resourceVersion=id%3A36"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/e2e9525c-63c0-4f69-9594-bed91b017d92\/relationships\/field_tags?resourceVersion=id%3A36"
}
}
}
}
},
{
"type": "node--article",
"id": "b86d5249-a67b-4f0a-8e51-d02348bb79dd",
"links": {
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/b86d5249-a67b-4f0a-8e51-d02348bb79dd?resourceVersion=id%3A34"
}
},
"attributes": {
"drupal_internal__nid": 17,
"drupal_internal__vid": 34,
"langcode": "en",
"revision_timestamp": "2023-04-24T20:48:01+00:00",
"revision_log": null,
"status": true,
"title": "Skip the spirits with delicious mocktails",
"created": "2023-04-24T20:48:01+00:00",
"changed": "2023-04-24T20:48:01+00:00",
"promote": true,
"sticky": false,
"default_langcode": true,
"revision_translation_affected": null,
"moderation_state": "published",
"path": {
"alias": "\/articles\/skip-the-spirits-with-delicious-mocktails",
"pid": 99,
"langcode": "en"
},
"content_translation_source": "und",
"content_translation_outdated": false,
"body": {
"value": "\u003Cp\u003EHaving a cocktail party? Then why not serve up something just as special for those who don\u0027t drink alcohol but do want to join in on all the fun? After all, what cocktail party is complete without those incredible looking glasses of mixed fruits, bright colors and of course, the little umbrellas? Do your bit for the environment by ditching the plastic straws and get hold of some great looking alternatives made out of glass, metal, or even bamboo. Don\u0027t forget the classic cocktail glasses and cool tumblers to really bring these recipes to life.\n\u003C\/p\u003E\n\u003Cp\u003E\nSo, grab the cocktail mixer, skip the spirits, and shake up these deliciously refreshing mocktails that won\u0027t leave you or your guests, short on flavor or style.\n\u003C\/p\u003E\n\u003Ch2\u003EMango-licious\u003C\/h2\u003E\n\u003Cp\u003EThis delicious drink has a sophisticated taste that is ideal for adults and the color is perfect for a late summer BBQ.\u003C\/p\u003E\n\u003Ch3\u003EInstructions:\u003C\/h3\u003E\n\u003Cp\u003EGive a few slices of cucumber and a little honey a good shake in a cocktail shaker. Add a spirit measure of mango puree and the juice of one lime. Add some ice and shake for all you\u0027re worth. Using a strainer, pour into a fancy glass and top with ginger beer. A few slices of lime and you\u0027re ready to go.\u003C\/p\u003E\n\u003Ch2\u003EMocky Mojito\u003C\/h2\u003E\n\u003Cp\u003EThere\u0027s nothing quite like a Mojito on a warm day and this version is ideal for a relaxing end of the day moment of bliss in the garden.\u003C\/p\u003E\n\u003Ch3\u003EInstructions:\u003C\/h3\u003E\n\u003Cp\u003EMuddle sugar, a squeeze of lime, and mint leaves in a tall glass, then add a few chunks of ice, top with the juice of a blood orange (for the sunset effect), and add a splash of soda water. Add a few sprigs of mint for an authentic look.\u003C\/p\u003E\n\u003Ch2\u003ESinless Strawberry Martini\u003C\/h2\u003E\n\u003Cp\u003EStrawberries add a beautiful rich red to this mocktail, while the ginger gives it a little kick. Serve in a proper martini glass, but maybe avoid the olives.\u003C\/p\u003E\n\u003Ch3\u003EInstructions:\u003C\/h3\u003E\n\u003Cp\u003EMuddle a strawberry with a dash a ginger beer and some sugar syrup in a cocktail shaker. Add a capful of elderflower cordial and a few mint leaves. Throw in a slice of orange and lemon and shake with ice. Strain into your glass and enjoy the sweet strawberry flavor.\u003C\/p\u003E\n\u003Ch2\u003ECoconut Queen\u003C\/h2\u003E\n\u003Cp\u003ECrazy about coconuts? Then you\u0027ll love the refreshing taste of this coconut based mocktail. The flavors give a hint of the tropical, while the look is grown-up sophistication.\u003C\/p\u003E\n\u003Ch3\u003EInstructions:\u003C\/h3\u003E\n\u003Cp\u003EAdd sliced cucumbers, the juice of a lime or two, and some mint leaves to a pitcher of coconut water and leave to chill and infuse for a few hours in the fridge. You can also add some sugar if you fancy this sweeter. Serve poured into glasses full of ice with sliced cucumber and mint leaves. Simple and beautiful.\u003C\/p\u003E\n",
"format": "basic_html",
"processed": "\u003Cp\u003EHaving a cocktail party? Then why not serve up something just as special for those who don\u0027t drink alcohol but do want to join in on all the fun? After all, what cocktail party is complete without those incredible looking glasses of mixed fruits, bright colors and of course, the little umbrellas? Do your bit for the environment by ditching the plastic straws and get hold of some great looking alternatives made out of glass, metal, or even bamboo. Don\u0027t forget the classic cocktail glasses and cool tumblers to really bring these recipes to life.\n\u003C\/p\u003E\n\u003Cp\u003E\nSo, grab the cocktail mixer, skip the spirits, and shake up these deliciously refreshing mocktails that won\u0027t leave you or your guests, short on flavor or style.\n\u003C\/p\u003E\n\u003Ch2\u003EMango-licious\u003C\/h2\u003E\n\u003Cp\u003EThis delicious drink has a sophisticated taste that is ideal for adults and the color is perfect for a late summer BBQ.\u003C\/p\u003E\n\u003Ch3\u003EInstructions:\u003C\/h3\u003E\n\u003Cp\u003EGive a few slices of cucumber and a little honey a good shake in a cocktail shaker. Add a spirit measure of mango puree and the juice of one lime. Add some ice and shake for all you\u0027re worth. Using a strainer, pour into a fancy glass and top with ginger beer. A few slices of lime and you\u0027re ready to go.\u003C\/p\u003E\n\u003Ch2\u003EMocky Mojito\u003C\/h2\u003E\n\u003Cp\u003EThere\u0027s nothing quite like a Mojito on a warm day and this version is ideal for a relaxing end of the day moment of bliss in the garden.\u003C\/p\u003E\n\u003Ch3\u003EInstructions:\u003C\/h3\u003E\n\u003Cp\u003EMuddle sugar, a squeeze of lime, and mint leaves in a tall glass, then add a few chunks of ice, top with the juice of a blood orange (for the sunset effect), and add a splash of soda water. Add a few sprigs of mint for an authentic look.\u003C\/p\u003E\n\u003Ch2\u003ESinless Strawberry Martini\u003C\/h2\u003E\n\u003Cp\u003EStrawberries add a beautiful rich red to this mocktail, while the ginger gives it a little kick. Serve in a proper martini glass, but maybe avoid the olives.\u003C\/p\u003E\n\u003Ch3\u003EInstructions:\u003C\/h3\u003E\n\u003Cp\u003EMuddle a strawberry with a dash a ginger beer and some sugar syrup in a cocktail shaker. Add a capful of elderflower cordial and a few mint leaves. Throw in a slice of orange and lemon and shake with ice. Strain into your glass and enjoy the sweet strawberry flavor.\u003C\/p\u003E\n\u003Ch2\u003ECoconut Queen\u003C\/h2\u003E\n\u003Cp\u003ECrazy about coconuts? Then you\u0027ll love the refreshing taste of this coconut based mocktail. The flavors give a hint of the tropical, while the look is grown-up sophistication.\u003C\/p\u003E\n\u003Ch3\u003EInstructions:\u003C\/h3\u003E\n\u003Cp\u003EAdd sliced cucumbers, the juice of a lime or two, and some mint leaves to a pitcher of coconut water and leave to chill and infuse for a few hours in the fridge. You can also add some sugar if you fancy this sweeter. Serve poured into glasses full of ice with sliced cucumber and mint leaves. Simple and beautiful.\u003C\/p\u003E\n",
"summary": null
}
},
"relationships": {
"node_type": {
"data": {
"type": "node_type--node_type",
"id": "20e50028-136e-4fce-91a8-5bf465e49cbb",
"meta": {
"drupal_internal__target_id": "article"
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/b86d5249-a67b-4f0a-8e51-d02348bb79dd\/node_type?resourceVersion=id%3A34"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/b86d5249-a67b-4f0a-8e51-d02348bb79dd\/relationships\/node_type?resourceVersion=id%3A34"
}
}
},
"revision_uid": {
"data": {
"type": "user--user",
"id": "3d4f8204-a666-483b-8f3d-5a2163a4d1b3",
"meta": {
"drupal_internal__target_id": 6
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/b86d5249-a67b-4f0a-8e51-d02348bb79dd\/revision_uid?resourceVersion=id%3A34"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/b86d5249-a67b-4f0a-8e51-d02348bb79dd\/relationships\/revision_uid?resourceVersion=id%3A34"
}
}
},
"uid": {
"data": {
"type": "user--user",
"id": "3d4f8204-a666-483b-8f3d-5a2163a4d1b3",
"meta": {
"drupal_internal__target_id": 6
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/b86d5249-a67b-4f0a-8e51-d02348bb79dd\/uid?resourceVersion=id%3A34"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/b86d5249-a67b-4f0a-8e51-d02348bb79dd\/relationships\/uid?resourceVersion=id%3A34"
}
}
},
"field_media_image": {
"data": {
"type": "media--image",
"id": "900dc432-94b8-47c5-a7aa-43aa53944920",
"meta": {
"drupal_internal__target_id": 16
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/b86d5249-a67b-4f0a-8e51-d02348bb79dd\/field_media_image?resourceVersion=id%3A34"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/b86d5249-a67b-4f0a-8e51-d02348bb79dd\/relationships\/field_media_image?resourceVersion=id%3A34"
}
}
},
"field_tags": {
"data": [
{
"type": "taxonomy_term--tags",
"id": "acc37c3d-8f92-43e7-88a9-b486979364de",
"meta": {
"drupal_internal__target_id": 1
}
},
{
"type": "taxonomy_term--tags",
"id": "f478d78a-8db3-4b68-93ab-0db90afe9626",
"meta": {
"drupal_internal__target_id": 12
}
},
{
"type": "taxonomy_term--tags",
"id": "0f2a5d5f-bdb3-44a4-bc0d-a8e8d4532c6e",
"meta": {
"drupal_internal__target_id": 20
}
},
{
"type": "taxonomy_term--tags",
"id": "033078de-8610-4698-b8d8-f0f888175991",
"meta": {
"drupal_internal__target_id": 8
}
},
{
"type": "taxonomy_term--tags",
"id": "01264045-38a0-4726-9b2b-5594196d11d8",
"meta": {
"drupal_internal__target_id": 11
}
}
],
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/b86d5249-a67b-4f0a-8e51-d02348bb79dd\/field_tags?resourceVersion=id%3A34"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/b86d5249-a67b-4f0a-8e51-d02348bb79dd\/relationships\/field_tags?resourceVersion=id%3A34"
}
}
}
}
},
{
"type": "node--article",
"id": "2151a81f-9f5c-4ab0-a7f9-b9ec2e376ed9",
"links": {
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/2151a81f-9f5c-4ab0-a7f9-b9ec2e376ed9?resourceVersion=id%3A32"
}
},
"attributes": {
"drupal_internal__nid": 16,
"drupal_internal__vid": 32,
"langcode": "en",
"revision_timestamp": "2023-04-24T20:48:01+00:00",
"revision_log": null,
"status": true,
"title": "Baking mishaps - our troubleshooting tips",
"created": "2023-04-24T20:48:01+00:00",
"changed": "2023-04-24T20:48:01+00:00",
"promote": true,
"sticky": false,
"default_langcode": true,
"revision_translation_affected": null,
"moderation_state": "published",
"path": {
"alias": "\/articles\/baking-mishaps-our-troubleshooting-tips",
"pid": 97,
"langcode": "en"
},
"content_translation_source": "und",
"content_translation_outdated": false,
"body": {
"value": "\u003Cp\u003EYou follow the recipe, you weigh all your ingredients, you use the right oven temperature and you take your time and yet still, your baking comes out with a soggy bottom, fails to rise or just tastes plain horrible. We have come up with a list of the most frustrating baking problems and the techniques you can use to try and avoid them.\u003C\/p\u003E\n\u003Ch2\u003EYour cake failed to rise\u003C\/h2\u003E\n\u003Cp\u003EDon\u0027t under any circumstances open the oven door in the middle of the cooking time. The heat will come whooshing out, destroying the chemical reaction taking place inside your cake. Your raising agent needs the heat to become activated and you might kill it off.\u003C\/p\u003E\n\u003Ch2\u003EYour cake is chewy and tough\u003C\/h2\u003E\n\u003Cp\u003EIf your light sponge is the consistency of a spare tire, you might have over-mixed your batter. Keep the lightness inside your cake mixture by carefully and gently folding in the ingredients and only to the point they are just mixed. If you over-fold, the gluten in the flour will start to come out and you\u0027ll be making bread instead of cake.\u003C\/p\u003E\n\u003Ch2\u003EYour cookies burned\u003C\/h2\u003E\n\u003Cp\u003EA great trick is to use light colored bakeware, rather than black. It is less likely to absorb the heat and transfer it to the bottom of your biscuits. Using baking paper will also help with this. Also, using too much sugar can result in your cookies browning too much and giving them a caramelized look.\u003C\/p\u003E\n\u003Ch2\u003ESplit top to your cake or bread\u003C\/h2\u003E\n\u003Cp\u003EYour oven is very likely too hot. If you suspect your oven doesn\u0027t keep to the right temperature, invest in a thermometer and check it regularly throughout the cooking. With bread, over-mixing the dough can result in a cracked or split top.\u003C\/p\u003E\n\u003Ch2\u003EThe dreaded soggy bottom\u003C\/h2\u003E\n\u003Cp\u003EAs mentioned above, the color of your pan is important. In this case, a dark pan will increase the heat at the bottom and give you that crisp underneath that you want. If you are using a flaky pastry, you really need to blind bake it. Putting your pie towards the bottom of the oven will increase the heat reaching that part.\u003C\/p\u003E\n\u003Ch2\u003EYour pastry has shrunk\u003C\/h2\u003E\n\u003Cp\u003EYou simply tried to make it stretch too far. When rolling, don\u0027t try to make it too thin or too big and when draping over your pan, allow it to settle on its own without stretching it to fit. Or just add more pastry - everyone loves pastry anyway!\u003C\/p\u003E\n",
"format": "basic_html",
"processed": "\u003Cp\u003EYou follow the recipe, you weigh all your ingredients, you use the right oven temperature and you take your time and yet still, your baking comes out with a soggy bottom, fails to rise or just tastes plain horrible. We have come up with a list of the most frustrating baking problems and the techniques you can use to try and avoid them.\u003C\/p\u003E\n\u003Ch2\u003EYour cake failed to rise\u003C\/h2\u003E\n\u003Cp\u003EDon\u0027t under any circumstances open the oven door in the middle of the cooking time. The heat will come whooshing out, destroying the chemical reaction taking place inside your cake. Your raising agent needs the heat to become activated and you might kill it off.\u003C\/p\u003E\n\u003Ch2\u003EYour cake is chewy and tough\u003C\/h2\u003E\n\u003Cp\u003EIf your light sponge is the consistency of a spare tire, you might have over-mixed your batter. Keep the lightness inside your cake mixture by carefully and gently folding in the ingredients and only to the point they are just mixed. If you over-fold, the gluten in the flour will start to come out and you\u0027ll be making bread instead of cake.\u003C\/p\u003E\n\u003Ch2\u003EYour cookies burned\u003C\/h2\u003E\n\u003Cp\u003EA great trick is to use light colored bakeware, rather than black. It is less likely to absorb the heat and transfer it to the bottom of your biscuits. Using baking paper will also help with this. Also, using too much sugar can result in your cookies browning too much and giving them a caramelized look.\u003C\/p\u003E\n\u003Ch2\u003ESplit top to your cake or bread\u003C\/h2\u003E\n\u003Cp\u003EYour oven is very likely too hot. If you suspect your oven doesn\u0027t keep to the right temperature, invest in a thermometer and check it regularly throughout the cooking. With bread, over-mixing the dough can result in a cracked or split top.\u003C\/p\u003E\n\u003Ch2\u003EThe dreaded soggy bottom\u003C\/h2\u003E\n\u003Cp\u003EAs mentioned above, the color of your pan is important. In this case, a dark pan will increase the heat at the bottom and give you that crisp underneath that you want. If you are using a flaky pastry, you really need to blind bake it. Putting your pie towards the bottom of the oven will increase the heat reaching that part.\u003C\/p\u003E\n\u003Ch2\u003EYour pastry has shrunk\u003C\/h2\u003E\n\u003Cp\u003EYou simply tried to make it stretch too far. When rolling, don\u0027t try to make it too thin or too big and when draping over your pan, allow it to settle on its own without stretching it to fit. Or just add more pastry - everyone loves pastry anyway!\u003C\/p\u003E\n",
"summary": null
}
},
"relationships": {
"node_type": {
"data": {
"type": "node_type--node_type",
"id": "20e50028-136e-4fce-91a8-5bf465e49cbb",
"meta": {
"drupal_internal__target_id": "article"
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/2151a81f-9f5c-4ab0-a7f9-b9ec2e376ed9\/node_type?resourceVersion=id%3A32"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/2151a81f-9f5c-4ab0-a7f9-b9ec2e376ed9\/relationships\/node_type?resourceVersion=id%3A32"
}
}
},
"revision_uid": {
"data": {
"type": "user--user",
"id": "13d3e25c-0c23-40b9-9a03-1b75200f8710",
"meta": {
"drupal_internal__target_id": 4
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/2151a81f-9f5c-4ab0-a7f9-b9ec2e376ed9\/revision_uid?resourceVersion=id%3A32"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/2151a81f-9f5c-4ab0-a7f9-b9ec2e376ed9\/relationships\/revision_uid?resourceVersion=id%3A32"
}
}
},
"uid": {
"data": {
"type": "user--user",
"id": "13d3e25c-0c23-40b9-9a03-1b75200f8710",
"meta": {
"drupal_internal__target_id": 4
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/2151a81f-9f5c-4ab0-a7f9-b9ec2e376ed9\/uid?resourceVersion=id%3A32"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/2151a81f-9f5c-4ab0-a7f9-b9ec2e376ed9\/relationships\/uid?resourceVersion=id%3A32"
}
}
},
"field_media_image": {
"data": {
"type": "media--image",
"id": "bca74d0b-d989-4433-b183-dcff29da081c",
"meta": {
"drupal_internal__target_id": 15
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/2151a81f-9f5c-4ab0-a7f9-b9ec2e376ed9\/field_media_image?resourceVersion=id%3A32"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/2151a81f-9f5c-4ab0-a7f9-b9ec2e376ed9\/relationships\/field_media_image?resourceVersion=id%3A32"
}
}
},
"field_tags": {
"data": [
{
"type": "taxonomy_term--tags",
"id": "e9164d7d-bab9-482f-bbc2-867c2dde5b87",
"meta": {
"drupal_internal__target_id": 3
}
},
{
"type": "taxonomy_term--tags",
"id": "17c9b6e4-2698-4c51-ab73-e0cd22921ed9",
"meta": {
"drupal_internal__target_id": 17
}
}
],
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/2151a81f-9f5c-4ab0-a7f9-b9ec2e376ed9\/field_tags?resourceVersion=id%3A32"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/2151a81f-9f5c-4ab0-a7f9-b9ec2e376ed9\/relationships\/field_tags?resourceVersion=id%3A32"
}
}
}
}
},
{
"type": "node--article",
"id": "af1ef19b-fbab-4d60-97c0-1a0bd8406151",
"links": {
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/af1ef19b-fbab-4d60-97c0-1a0bd8406151?resourceVersion=id%3A30"
}
},
"attributes": {
"drupal_internal__nid": 15,
"drupal_internal__vid": 30,
"langcode": "en",
"revision_timestamp": "2023-04-24T20:48:01+00:00",
"revision_log": null,
"status": true,
"title": "Let\u0027s hear it for carrots",
"created": "2023-04-24T20:48:01+00:00",
"changed": "2023-04-24T20:48:01+00:00",
"promote": true,
"sticky": false,
"default_langcode": true,
"revision_translation_affected": null,
"moderation_state": "published",
"path": {
"alias": "\/articles\/lets-hear-it-for-carrots",
"pid": 95,
"langcode": "en"
},
"content_translation_source": "und",
"content_translation_outdated": false,
"body": {
"value": "\u003Cp\u003ELet\u0027s hear it for the humble carrot! This sweet and healthy \u0026lsquo;everyday\u0026rsquo; veg packs it all in. Great flavor, fantastic color, and if you\u0027re one for believing the old story, they can even help you to see better in the dark.\u003C\/p\u003E\n\u003Cp\u003EWho doesn\u0027t love cooking with this super versatile root veg? We roast them, boil them, blend them into soups, and grate them into salads. The humble carrot has to be one of our favorite veg choices and it\u0027s been grown for thousands of years. But back then you were more likely to find a purple, red, yellow or white carrot and not the orange one we are all so familiar with today.\u003C\/p\u003E\n\u003Ch2\u003ESo what happened? When did orange become the preferred color?\u003C\/h2\u003E\n\u003Cp\u003EIt was the Dutch during the 17th century who cultivated and made popular the orange variety, most likely because of its brilliant color and higher levels of beta carotene. And it has also been suggested that they were cultivated in tribute to William of Orange, who led the struggle during the Dutch battle for independence.\u003C\/p\u003E\n\u003Cp\u003EFor whatever reason, the orange variety has stuck but look out for the \u0026lsquo;heritage\u0026rsquo; varieties at farmers markets and grocers, their mix of purple, yellow, orange and white are especially appealing to cook with and look absolutely great served as a side dish.\u003C\/p\u003E\n\u003Ch2\u003ENutrition\u003C\/h2\u003E\n\u003Cp\u003ECarrots are rich in beta carotene which your body converts into vitamin A. It\u0027s often tricky to know whether cooking vegetables will enhance or reduce their nutritious value and unfortunately there\u0027s no simple rule. But in the case of carrots, nutrition is enhanced by consuming them cooked. In fact, it only takes 100 grams of carrots to get more than your daily value of vitamin A.\u003C\/p\u003E\n\u003Ch2\u003EGet them at their best\u003C\/h2\u003E\n\u003Cp\u003EYoung carrots, harvested when they are small have an especially sweet flavor and they are absolutely delicious. To cook them you can skip the peeling, give them a good wash and pop them in the steamer for just a few minutes. Carrots will taste the best when they are fresh, so make sure they are firm and bright in color when buying.\u003C\/p\u003E\n\u003Ch2\u003EAnd that thing about carrots helping you see more in the dark?\u003C\/h2\u003E\n\u003Cp\u003EOf course it\u0027s a myth. During World War II the UK Ministry of Food promoted carrots as a super healthy veggie that would improve your ability to see during the blackouts and as an explanation for the successful night missions of UK fighter pilots. In reality, the only truth in the connection between carrots and improved eye sight is that vitamin A does indeed help to maintain vision.\u003C\/p\u003E\n",
"format": "basic_html",
"processed": "\u003Cp\u003ELet\u0027s hear it for the humble carrot! This sweet and healthy \u2018everyday\u2019 veg packs it all in. Great flavor, fantastic color, and if you\u0027re one for believing the old story, they can even help you to see better in the dark.\u003C\/p\u003E\n\u003Cp\u003EWho doesn\u0027t love cooking with this super versatile root veg? We roast them, boil them, blend them into soups, and grate them into salads. The humble carrot has to be one of our favorite veg choices and it\u0027s been grown for thousands of years. But back then you were more likely to find a purple, red, yellow or white carrot and not the orange one we are all so familiar with today.\u003C\/p\u003E\n\u003Ch2\u003ESo what happened? When did orange become the preferred color?\u003C\/h2\u003E\n\u003Cp\u003EIt was the Dutch during the 17th century who cultivated and made popular the orange variety, most likely because of its brilliant color and higher levels of beta carotene. And it has also been suggested that they were cultivated in tribute to William of Orange, who led the struggle during the Dutch battle for independence.\u003C\/p\u003E\n\u003Cp\u003EFor whatever reason, the orange variety has stuck but look out for the \u2018heritage\u2019 varieties at farmers markets and grocers, their mix of purple, yellow, orange and white are especially appealing to cook with and look absolutely great served as a side dish.\u003C\/p\u003E\n\u003Ch2\u003ENutrition\u003C\/h2\u003E\n\u003Cp\u003ECarrots are rich in beta carotene which your body converts into vitamin A. It\u0027s often tricky to know whether cooking vegetables will enhance or reduce their nutritious value and unfortunately there\u0027s no simple rule. But in the case of carrots, nutrition is enhanced by consuming them cooked. In fact, it only takes 100 grams of carrots to get more than your daily value of vitamin A.\u003C\/p\u003E\n\u003Ch2\u003EGet them at their best\u003C\/h2\u003E\n\u003Cp\u003EYoung carrots, harvested when they are small have an especially sweet flavor and they are absolutely delicious. To cook them you can skip the peeling, give them a good wash and pop them in the steamer for just a few minutes. Carrots will taste the best when they are fresh, so make sure they are firm and bright in color when buying.\u003C\/p\u003E\n\u003Ch2\u003EAnd that thing about carrots helping you see more in the dark?\u003C\/h2\u003E\n\u003Cp\u003EOf course it\u0027s a myth. During World War II the UK Ministry of Food promoted carrots as a super healthy veggie that would improve your ability to see during the blackouts and as an explanation for the successful night missions of UK fighter pilots. In reality, the only truth in the connection between carrots and improved eye sight is that vitamin A does indeed help to maintain vision.\u003C\/p\u003E\n",
"summary": null
}
},
"relationships": {
"node_type": {
"data": {
"type": "node_type--node_type",
"id": "20e50028-136e-4fce-91a8-5bf465e49cbb",
"meta": {
"drupal_internal__target_id": "article"
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/af1ef19b-fbab-4d60-97c0-1a0bd8406151\/node_type?resourceVersion=id%3A30"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/af1ef19b-fbab-4d60-97c0-1a0bd8406151\/relationships\/node_type?resourceVersion=id%3A30"
}
}
},
"revision_uid": {
"data": {
"type": "user--user",
"id": "13d3e25c-0c23-40b9-9a03-1b75200f8710",
"meta": {
"drupal_internal__target_id": 4
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/af1ef19b-fbab-4d60-97c0-1a0bd8406151\/revision_uid?resourceVersion=id%3A30"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/af1ef19b-fbab-4d60-97c0-1a0bd8406151\/relationships\/revision_uid?resourceVersion=id%3A30"
}
}
},
"uid": {
"data": {
"type": "user--user",
"id": "13d3e25c-0c23-40b9-9a03-1b75200f8710",
"meta": {
"drupal_internal__target_id": 4
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/af1ef19b-fbab-4d60-97c0-1a0bd8406151\/uid?resourceVersion=id%3A30"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/af1ef19b-fbab-4d60-97c0-1a0bd8406151\/relationships\/uid?resourceVersion=id%3A30"
}
}
},
"field_media_image": {
"data": {
"type": "media--image",
"id": "801a43cc-aa5e-456e-bf5b-c4221e16d8b7",
"meta": {
"drupal_internal__target_id": 14
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/af1ef19b-fbab-4d60-97c0-1a0bd8406151\/field_media_image?resourceVersion=id%3A30"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/af1ef19b-fbab-4d60-97c0-1a0bd8406151\/relationships\/field_media_image?resourceVersion=id%3A30"
}
}
},
"field_tags": {
"data": [
{
"type": "taxonomy_term--tags",
"id": "fd2c20a4-50bb-469b-8fcb-646ce7c004b6",
"meta": {
"drupal_internal__target_id": 6
}
},
{
"type": "taxonomy_term--tags",
"id": "314fae54-6e1f-42f5-af8a-ee0b1d77d019",
"meta": {
"drupal_internal__target_id": 28
}
},
{
"type": "taxonomy_term--tags",
"id": "6aff7f11-0a4b-425a-99f2-b8aae755417b",
"meta": {
"drupal_internal__target_id": 15
}
}
],
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/af1ef19b-fbab-4d60-97c0-1a0bd8406151\/field_tags?resourceVersion=id%3A30"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/af1ef19b-fbab-4d60-97c0-1a0bd8406151\/relationships\/field_tags?resourceVersion=id%3A30"
}
}
}
}
},
{
"type": "node--article",
"id": "a0a277fd-91c0-4b1a-97b5-acb9d83bf2ae",
"links": {
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/a0a277fd-91c0-4b1a-97b5-acb9d83bf2ae?resourceVersion=id%3A28"
}
},
"attributes": {
"drupal_internal__nid": 14,
"drupal_internal__vid": 28,
"langcode": "en",
"revision_timestamp": "2023-04-24T20:48:01+00:00",
"revision_log": null,
"status": true,
"title": "The Umami guide to our favorite mushrooms",
"created": "2023-04-24T20:48:01+00:00",
"changed": "2023-04-24T20:48:01+00:00",
"promote": true,
"sticky": false,
"default_langcode": true,
"revision_translation_affected": null,
"moderation_state": "published",
"path": {
"alias": "\/articles\/the-umami-guide-to-our-favourite-mushrooms",
"pid": 93,
"langcode": "en"
},
"content_translation_source": "und",
"content_translation_outdated": false,
"body": {
"value": "\u003Cp\u003EWe think mushrooms are one of the most enjoyable ingredients to cook with. There are plenty of edible varieties to try, each with their own distinctive shape, size, and taste. And with curious names such as chanterelle, the gypsy, horn of plenty, or hen of the woods, who wouldn\u0027t want to know more about cooking with the mighty mushroom?\u003C\/p\u003E\n\u003Cp\u003EOne of the best things about mushrooms is their versatility. They can be fried, roasted, grilled, steamed, or even cooked in the microwave. And they can be served as the main ingredient for a dish, or simply added as part of the mix. This makes mushrooms an ideal choice for creating absolutely delicious vegetarian dishes.\u003C\/p\u003E\n\u003Cp\u003ESo let\u0027s take a look at some of our favorite types of mushroom. You might not have tried cooking with them before but don\u0027t let that put you off. With their delicious, distinctive flavors you can easily transform soups, starters, sauces and create amazing pasta, or stir-fry dishes.\u003C\/p\u003E\n\u003Cp\u003ETry the lovely \u003Cstrong\u003Eshiitake\u003C\/strong\u003E. Used in Asian cooking, these can be purchased dried and rehydrated for a strong, deep flavor. Or buy fresh and add to soups and stir-fries. Not only does this mushroom have an intense flavor, it looks lovely too. The deep brown and smooth shapes will provide texture to your meal. In their dried form and rehydrated, these are the perfect addition for a deep and flavorful stock for a risotto.\u003C\/p\u003E\n\u003Cp\u003EThe gorgeous sunny \u003Cstrong\u003Echanterelle\u003C\/strong\u003E with its yellow flesh has a fruity flavor - but it is worth mentioning that there are many lookalikes out there and care should be taken to ensure you\u0027re eating the right ones. These look great in an omelette or an Asian soup to complement the yellow tones.\u003C\/p\u003E\n\u003Cp\u003EThe brown \u003Cstrong\u003Emorel\u003C\/strong\u003E offers a meaty and distinctive flavor and you\u0027ll probably love how extraordinary they look in a meal. The morel is a more popular mushroom during the spring, when their availability is high.\u003C\/p\u003E\n\u003Cp\u003EFor delicacy try the \u003Cstrong\u003Eenoki\u003C\/strong\u003E with its tiny white heads that grow in a bunch. These can even be eaten raw in salads. Finally, you can choose the popular \u003Cstrong\u003Eoyster\u003C\/strong\u003E mushroom. They are named thus because they look nothing like a mushroom and resemble the innards of an oyster and their sweet flavor is delicious.\u003C\/p\u003E\n",
"format": "basic_html",
"processed": "\u003Cp\u003EWe think mushrooms are one of the most enjoyable ingredients to cook with. There are plenty of edible varieties to try, each with their own distinctive shape, size, and taste. And with curious names such as chanterelle, the gypsy, horn of plenty, or hen of the woods, who wouldn\u0027t want to know more about cooking with the mighty mushroom?\u003C\/p\u003E\n\u003Cp\u003EOne of the best things about mushrooms is their versatility. They can be fried, roasted, grilled, steamed, or even cooked in the microwave. And they can be served as the main ingredient for a dish, or simply added as part of the mix. This makes mushrooms an ideal choice for creating absolutely delicious vegetarian dishes.\u003C\/p\u003E\n\u003Cp\u003ESo let\u0027s take a look at some of our favorite types of mushroom. You might not have tried cooking with them before but don\u0027t let that put you off. With their delicious, distinctive flavors you can easily transform soups, starters, sauces and create amazing pasta, or stir-fry dishes.\u003C\/p\u003E\n\u003Cp\u003ETry the lovely \u003Cstrong\u003Eshiitake\u003C\/strong\u003E. Used in Asian cooking, these can be purchased dried and rehydrated for a strong, deep flavor. Or buy fresh and add to soups and stir-fries. Not only does this mushroom have an intense flavor, it looks lovely too. The deep brown and smooth shapes will provide texture to your meal. In their dried form and rehydrated, these are the perfect addition for a deep and flavorful stock for a risotto.\u003C\/p\u003E\n\u003Cp\u003EThe gorgeous sunny \u003Cstrong\u003Echanterelle\u003C\/strong\u003E with its yellow flesh has a fruity flavor - but it is worth mentioning that there are many lookalikes out there and care should be taken to ensure you\u0027re eating the right ones. These look great in an omelette or an Asian soup to complement the yellow tones.\u003C\/p\u003E\n\u003Cp\u003EThe brown \u003Cstrong\u003Emorel\u003C\/strong\u003E offers a meaty and distinctive flavor and you\u0027ll probably love how extraordinary they look in a meal. The morel is a more popular mushroom during the spring, when their availability is high.\u003C\/p\u003E\n\u003Cp\u003EFor delicacy try the \u003Cstrong\u003Eenoki\u003C\/strong\u003E with its tiny white heads that grow in a bunch. These can even be eaten raw in salads. Finally, you can choose the popular \u003Cstrong\u003Eoyster\u003C\/strong\u003E mushroom. They are named thus because they look nothing like a mushroom and resemble the innards of an oyster and their sweet flavor is delicious.\u003C\/p\u003E\n",
"summary": null
}
},
"relationships": {
"node_type": {
"data": {
"type": "node_type--node_type",
"id": "20e50028-136e-4fce-91a8-5bf465e49cbb",
"meta": {
"drupal_internal__target_id": "article"
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/a0a277fd-91c0-4b1a-97b5-acb9d83bf2ae\/node_type?resourceVersion=id%3A28"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/a0a277fd-91c0-4b1a-97b5-acb9d83bf2ae\/relationships\/node_type?resourceVersion=id%3A28"
}
}
},
"revision_uid": {
"data": {
"type": "user--user",
"id": "13d3e25c-0c23-40b9-9a03-1b75200f8710",
"meta": {
"drupal_internal__target_id": 4
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/a0a277fd-91c0-4b1a-97b5-acb9d83bf2ae\/revision_uid?resourceVersion=id%3A28"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/a0a277fd-91c0-4b1a-97b5-acb9d83bf2ae\/relationships\/revision_uid?resourceVersion=id%3A28"
}
}
},
"uid": {
"data": {
"type": "user--user",
"id": "13d3e25c-0c23-40b9-9a03-1b75200f8710",
"meta": {
"drupal_internal__target_id": 4
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/a0a277fd-91c0-4b1a-97b5-acb9d83bf2ae\/uid?resourceVersion=id%3A28"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/a0a277fd-91c0-4b1a-97b5-acb9d83bf2ae\/relationships\/uid?resourceVersion=id%3A28"
}
}
},
"field_media_image": {
"data": {
"type": "media--image",
"id": "8ea40914-bb5d-4422-8a16-eb3de4f41e93",
"meta": {
"drupal_internal__target_id": 13
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/a0a277fd-91c0-4b1a-97b5-acb9d83bf2ae\/field_media_image?resourceVersion=id%3A28"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/a0a277fd-91c0-4b1a-97b5-acb9d83bf2ae\/relationships\/field_media_image?resourceVersion=id%3A28"
}
}
},
"field_tags": {
"data": [
{
"type": "taxonomy_term--tags",
"id": "fd63c517-1aa9-4ae9-b907-4f43cb7ad25a",
"meta": {
"drupal_internal__target_id": 18
}
},
{
"type": "taxonomy_term--tags",
"id": "314fae54-6e1f-42f5-af8a-ee0b1d77d019",
"meta": {
"drupal_internal__target_id": 28
}
}
],
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/a0a277fd-91c0-4b1a-97b5-acb9d83bf2ae\/field_tags?resourceVersion=id%3A28"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/a0a277fd-91c0-4b1a-97b5-acb9d83bf2ae\/relationships\/field_tags?resourceVersion=id%3A28"
}
}
}
}
},
{
"type": "node--article",
"id": "561d4753-f67a-4437-ba16-08449d492ae4",
"links": {
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/561d4753-f67a-4437-ba16-08449d492ae4?resourceVersion=id%3A26"
}
},
"attributes": {
"drupal_internal__nid": 13,
"drupal_internal__vid": 26,
"langcode": "en",
"revision_timestamp": "2023-04-24T20:48:01+00:00",
"revision_log": null,
"status": true,
"title": "The real deal for supermarket savvy shopping",
"created": "2023-04-24T20:48:01+00:00",
"changed": "2023-04-24T20:48:01+00:00",
"promote": true,
"sticky": false,
"default_langcode": true,
"revision_translation_affected": null,
"moderation_state": "published",
"path": {
"alias": "\/articles\/the-real-deal-for-supermarket-savvy-shopping",
"pid": 91,
"langcode": "en"
},
"content_translation_source": "und",
"content_translation_outdated": false,
"body": {
"value": "\u003Cp\u003EThis may not surprise you - but your supermarket is a hot bed of marketing mayhem, designed to improve their profit and to encourage the consumer to spend more than they intended. The tricks that all supermarkets employ are sometimes sensible ploys that any retailer should do to improve sales - but some may be more subtle and less obvious than you might think.\u003C\/p\u003E\n\u003Cp\u003EWith consumer awareness articles and documentaries frequently picking up on this topic, it\u0027s likely the case that retailers find it harder to get away with the more obvious ploys. We are becoming ever more savvy consumers and there\u0027s probably not a great deal that gets past us. But here\u0027s a few retail tricks to keep in mind when you are rushing around the weekly supermarket stock-up.\u003C\/p\u003E\n\u003Ch2\u003ELost essentials\u003C\/h2\u003E\n\u003Cp\u003EThe layout of your supermarket may make sense to you when you have shopped there for a while. But for newcomers trying to find essentials, it may make very little sense at all. Some supermarkets have noted that people come to their store to buy milk, bread, or eggs and that by hiding these essentials in the far reaches of the store, they encourage the newcomer to wander the aisles - picking up other items as they go.\u003C\/p\u003E\n\u003Cp\u003ESure, this can be great for nudging the memory on essentials you might otherwise forget, but for saving the pennies it\u0027s tough to stick to grabbing only the things you came for and the supermarkets know it!\u003C\/p\u003E\n\u003Cblockquote\u003E\nOur tip: Make your shopping list before leaving the house, checking what you need and sticking to that list. You could be amazed by what you\u0027ll save over time.\n\u003C\/blockquote\u003E\n\u003Ch2\u003ENonsensical multibuys\u003C\/h2\u003E\n\u003Cp\u003EBuy one, get one free; two for \u0026pound;2 and meal deals. They all seem like a great deal. But in some cases these are loss leaders that are positioned to encourage you to take up the deal and buy other stuff while you are there. In other cases, deals for multi-buy or discounts on specific pack sizes might seem like a bargain, until you compare the pricing like-for-like on similar brands or with pack sizes for the same brand. These deals can mean you end up paying less but is it less for something you don\u0027t really need and in some cases you can end up paying more for the item. Remember, the supermarkets know you are often in a hurry and might not have the time to take in the full picture.\u003C\/p\u003E\n\u003Cblockquote\u003E\n\u003Cp\u003EOur tip: Don\u0027t be rushed, take the time to read the small print. The large print will draw you in but if you read the label small print, you should find the price per 100 grams or per ounce\/litre and you\u0027ll be surprised how often the headline deals are actually more expensive than just buying a different package type or size of the product.\u003C\/p\u003E\n\u003C\/blockquote\u003E\n\u003Ch2\u003EUnderstanding our shopping habits\u003C\/h2\u003E\n\u003Cp\u003EThe cheapest products in a supermarket are almost always positioned on the bottom of the shelving where you\u0027ll need to bend over to pick it up. You also may not be able to easily read the price ticket. Most people will shop on the middle rows because it is easier and often quicker. These are where the highest profit items are kept and they are the ones the supermarkets want you to buy.\u003C\/p\u003E\n\u003Cp\u003EThe layout, the music, the colors, and the product types are all decided based on principles laid down by industry experts on people - psychologists and behavioral experts who know how we think. And so the savvy shopper will certainly be able to take advantage of great deals in their weekly shop, but it takes a little time and effort just to be more aware of what we are being encouraged to reach for in the aisles.\u003C\/p\u003E\n",
"format": "basic_html",
"processed": "\u003Cp\u003EThis may not surprise you - but your supermarket is a hot bed of marketing mayhem, designed to improve their profit and to encourage the consumer to spend more than they intended. The tricks that all supermarkets employ are sometimes sensible ploys that any retailer should do to improve sales - but some may be more subtle and less obvious than you might think.\u003C\/p\u003E\n\u003Cp\u003EWith consumer awareness articles and documentaries frequently picking up on this topic, it\u0027s likely the case that retailers find it harder to get away with the more obvious ploys. We are becoming ever more savvy consumers and there\u0027s probably not a great deal that gets past us. But here\u0027s a few retail tricks to keep in mind when you are rushing around the weekly supermarket stock-up.\u003C\/p\u003E\n\u003Ch2\u003ELost essentials\u003C\/h2\u003E\n\u003Cp\u003EThe layout of your supermarket may make sense to you when you have shopped there for a while. But for newcomers trying to find essentials, it may make very little sense at all. Some supermarkets have noted that people come to their store to buy milk, bread, or eggs and that by hiding these essentials in the far reaches of the store, they encourage the newcomer to wander the aisles - picking up other items as they go.\u003C\/p\u003E\n\u003Cp\u003ESure, this can be great for nudging the memory on essentials you might otherwise forget, but for saving the pennies it\u0027s tough to stick to grabbing only the things you came for and the supermarkets know it!\u003C\/p\u003E\n\u003Cblockquote\u003E\u003Cp\u003E\nOur tip: Make your shopping list before leaving the house, checking what you need and sticking to that list. You could be amazed by what you\u0027ll save over time.\n\u003C\/p\u003E\u003C\/blockquote\u003E\n\u003Ch2\u003ENonsensical multibuys\u003C\/h2\u003E\n\u003Cp\u003EBuy one, get one free; two for \u00a32 and meal deals. They all seem like a great deal. But in some cases these are loss leaders that are positioned to encourage you to take up the deal and buy other stuff while you are there. In other cases, deals for multi-buy or discounts on specific pack sizes might seem like a bargain, until you compare the pricing like-for-like on similar brands or with pack sizes for the same brand. These deals can mean you end up paying less but is it less for something you don\u0027t really need and in some cases you can end up paying more for the item. Remember, the supermarkets know you are often in a hurry and might not have the time to take in the full picture.\u003C\/p\u003E\n\u003Cblockquote\u003E\u003Cp\u003EOur tip: Don\u0027t be rushed, take the time to read the small print. The large print will draw you in but if you read the label small print, you should find the price per 100 grams or per ounce\/litre and you\u0027ll be surprised how often the headline deals are actually more expensive than just buying a different package type or size of the product.\u003C\/p\u003E\n\u003C\/blockquote\u003E\n\u003Ch2\u003EUnderstanding our shopping habits\u003C\/h2\u003E\n\u003Cp\u003EThe cheapest products in a supermarket are almost always positioned on the bottom of the shelving where you\u0027ll need to bend over to pick it up. You also may not be able to easily read the price ticket. Most people will shop on the middle rows because it is easier and often quicker. These are where the highest profit items are kept and they are the ones the supermarkets want you to buy.\u003C\/p\u003E\n\u003Cp\u003EThe layout, the music, the colors, and the product types are all decided based on principles laid down by industry experts on people - psychologists and behavioral experts who know how we think. And so the savvy shopper will certainly be able to take advantage of great deals in their weekly shop, but it takes a little time and effort just to be more aware of what we are being encouraged to reach for in the aisles.\u003C\/p\u003E\n",
"summary": null
}
},
"relationships": {
"node_type": {
"data": {
"type": "node_type--node_type",
"id": "20e50028-136e-4fce-91a8-5bf465e49cbb",
"meta": {
"drupal_internal__target_id": "article"
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/561d4753-f67a-4437-ba16-08449d492ae4\/node_type?resourceVersion=id%3A26"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/561d4753-f67a-4437-ba16-08449d492ae4\/relationships\/node_type?resourceVersion=id%3A26"
}
}
},
"revision_uid": {
"data": {
"type": "user--user",
"id": "3d4f8204-a666-483b-8f3d-5a2163a4d1b3",
"meta": {
"drupal_internal__target_id": 6
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/561d4753-f67a-4437-ba16-08449d492ae4\/revision_uid?resourceVersion=id%3A26"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/561d4753-f67a-4437-ba16-08449d492ae4\/relationships\/revision_uid?resourceVersion=id%3A26"
}
}
},
"uid": {
"data": {
"type": "user--user",
"id": "3d4f8204-a666-483b-8f3d-5a2163a4d1b3",
"meta": {
"drupal_internal__target_id": 6
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/561d4753-f67a-4437-ba16-08449d492ae4\/uid?resourceVersion=id%3A26"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/561d4753-f67a-4437-ba16-08449d492ae4\/relationships\/uid?resourceVersion=id%3A26"
}
}
},
"field_media_image": {
"data": {
"type": "media--image",
"id": "11e37ca2-aebd-434b-af24-b7bbaa552746",
"meta": {
"drupal_internal__target_id": 12
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/561d4753-f67a-4437-ba16-08449d492ae4\/field_media_image?resourceVersion=id%3A26"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/561d4753-f67a-4437-ba16-08449d492ae4\/relationships\/field_media_image?resourceVersion=id%3A26"
}
}
},
"field_tags": {
"data": [
{
"type": "taxonomy_term--tags",
"id": "c1b16752-64e4-41f9-878d-f8d5332751eb",
"meta": {
"drupal_internal__target_id": 26
}
},
{
"type": "taxonomy_term--tags",
"id": "8472b6d4-725e-4022-819e-1d261039cbfe",
"meta": {
"drupal_internal__target_id": 24
}
}
],
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/561d4753-f67a-4437-ba16-08449d492ae4\/field_tags?resourceVersion=id%3A26"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/561d4753-f67a-4437-ba16-08449d492ae4\/relationships\/field_tags?resourceVersion=id%3A26"
}
}
}
}
},
{
"type": "node--article",
"id": "0b7fe22e-7498-42b7-81f8-85c2eb3494fa",
"links": {
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/0b7fe22e-7498-42b7-81f8-85c2eb3494fa?resourceVersion=id%3A24"
}
},
"attributes": {
"drupal_internal__nid": 12,
"drupal_internal__vid": 24,
"langcode": "en",
"revision_timestamp": "2023-04-24T20:48:01+00:00",
"revision_log": null,
"status": true,
"title": "Dairy-free and delicious milk chocolate",
"created": "2023-04-24T20:48:01+00:00",
"changed": "2023-04-24T20:48:01+00:00",
"promote": true,
"sticky": false,
"default_langcode": true,
"revision_translation_affected": null,
"moderation_state": "published",
"path": {
"alias": "\/articles\/dairy-free-and-delicious-milk-chocolate",
"pid": 89,
"langcode": "en"
},
"content_translation_source": "und",
"content_translation_outdated": false,
"body": {
"value": "\u003Cp\u003EThe calendar is full of excuses for chocolate-lovers to indulge, from religious festivals to birthdays - and even World Chocolate Day on the 7th July. But for those who are vegan, or on dairy-free diets, there is no need to miss out, because there are plenty of delicious vegan chocolate varieties on offer.\u003C\/p\u003E\n\u003Cp\u003EDairy-free milk chocolate is made in largely the same way as regular chocolate, until the point when the milk is added. Cacao beans are roasted for a couple of hours until they develop a rich flavor. The outer shells are removed, and the interior nibs are ground to make a paste that can be mixed with cocoa butter to produce the desired percentage of chocolate. Flavorings, sugar and milk are added in different quantities to get the type of chocolate being produced. The chocolate is grainy at this point and needs to be mashed until it is smooth - this can take days! Finally, it is tempered through a process of heating and cooling until it is ready to eat.\u003C\/p\u003E\n\u003Cp\u003ESo, how do vegan chocolatiers get that creamy milk flavor and texture into their products?\u003C\/p\u003E\n\u003Ch2\u003ERice milk\u003C\/h2\u003E\n\u003Cp\u003EThe flavor of rice milk perfectly complements the cocoa beans and it was one of the first dairy milk alternatives to be used to create vegan milk chocolate. Rice milk is made from rice powder and is sometimes combined with hazelnut milk to create the correct texture and taste that is ideal for producing all kinds of chocolate bars.\u003C\/p\u003E\n\u003Ch2\u003ECoconut milk\u003C\/h2\u003E\n\u003Cp\u003ECoconut milk has to be the perfect ingredient for adding creaminess into a chocolate bar. With high fat levels, a sweet, but not overpowering taste and the correct consistency, coconut milk is a great choice for vegan milk chocolate. Chocolate made in this way will melt wonderfully for drizzling or dipping, and the coconut milk adds a slight tropical flavor that works well with other fruit flavors and nuts.\u003C\/p\u003E\n\u003Ch2\u003ESoy milk\u003C\/h2\u003E\n\u003Cp\u003ESoy has long been the mainstay of vegan and vegetarian diets, as it is rich in protein and is available in a wide variety of textures suitable for all kinds of dishes. Soy milk is widely available and is a great alternative to dairy milk in chocolate. It isn\u0026rsquo;t as rich in fat as some vegan milks, but does have a neutral taste that makes it easy to combine with almost any other flavor.\u003C\/p\u003E\n\u003Ch2\u003ENut milks\u003C\/h2\u003E\n\u003Cp\u003EMilks made from almonds and hazelnuts are easy to find on supermarket shelves, and are perfect for chocolate production. Like soy milk, they can be quite low in fat and therefore a little less creamy, but they have that nutty taste that goes so well with chocolate of all kinds.\u003C\/p\u003E\n\u003Cp\u003EMany manufacturers will use a combination of the above milks to create the perfect consistency for their product. Using this milk mixture they are able to produce all kinds of milk chocolates, including white chocolate.\u003C\/p\u003E\n",
"format": "basic_html",
"processed": "\u003Cp\u003EThe calendar is full of excuses for chocolate-lovers to indulge, from religious festivals to birthdays - and even World Chocolate Day on the 7th July. But for those who are vegan, or on dairy-free diets, there is no need to miss out, because there are plenty of delicious vegan chocolate varieties on offer.\u003C\/p\u003E\n\u003Cp\u003EDairy-free milk chocolate is made in largely the same way as regular chocolate, until the point when the milk is added. Cacao beans are roasted for a couple of hours until they develop a rich flavor. The outer shells are removed, and the interior nibs are ground to make a paste that can be mixed with cocoa butter to produce the desired percentage of chocolate. Flavorings, sugar and milk are added in different quantities to get the type of chocolate being produced. The chocolate is grainy at this point and needs to be mashed until it is smooth - this can take days! Finally, it is tempered through a process of heating and cooling until it is ready to eat.\u003C\/p\u003E\n\u003Cp\u003ESo, how do vegan chocolatiers get that creamy milk flavor and texture into their products?\u003C\/p\u003E\n\u003Ch2\u003ERice milk\u003C\/h2\u003E\n\u003Cp\u003EThe flavor of rice milk perfectly complements the cocoa beans and it was one of the first dairy milk alternatives to be used to create vegan milk chocolate. Rice milk is made from rice powder and is sometimes combined with hazelnut milk to create the correct texture and taste that is ideal for producing all kinds of chocolate bars.\u003C\/p\u003E\n\u003Ch2\u003ECoconut milk\u003C\/h2\u003E\n\u003Cp\u003ECoconut milk has to be the perfect ingredient for adding creaminess into a chocolate bar. With high fat levels, a sweet, but not overpowering taste and the correct consistency, coconut milk is a great choice for vegan milk chocolate. Chocolate made in this way will melt wonderfully for drizzling or dipping, and the coconut milk adds a slight tropical flavor that works well with other fruit flavors and nuts.\u003C\/p\u003E\n\u003Ch2\u003ESoy milk\u003C\/h2\u003E\n\u003Cp\u003ESoy has long been the mainstay of vegan and vegetarian diets, as it is rich in protein and is available in a wide variety of textures suitable for all kinds of dishes. Soy milk is widely available and is a great alternative to dairy milk in chocolate. It isn\u2019t as rich in fat as some vegan milks, but does have a neutral taste that makes it easy to combine with almost any other flavor.\u003C\/p\u003E\n\u003Ch2\u003ENut milks\u003C\/h2\u003E\n\u003Cp\u003EMilks made from almonds and hazelnuts are easy to find on supermarket shelves, and are perfect for chocolate production. Like soy milk, they can be quite low in fat and therefore a little less creamy, but they have that nutty taste that goes so well with chocolate of all kinds.\u003C\/p\u003E\n\u003Cp\u003EMany manufacturers will use a combination of the above milks to create the perfect consistency for their product. Using this milk mixture they are able to produce all kinds of milk chocolates, including white chocolate.\u003C\/p\u003E\n",
"summary": null
}
},
"relationships": {
"node_type": {
"data": {
"type": "node_type--node_type",
"id": "20e50028-136e-4fce-91a8-5bf465e49cbb",
"meta": {
"drupal_internal__target_id": "article"
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/0b7fe22e-7498-42b7-81f8-85c2eb3494fa\/node_type?resourceVersion=id%3A24"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/0b7fe22e-7498-42b7-81f8-85c2eb3494fa\/relationships\/node_type?resourceVersion=id%3A24"
}
}
},
"revision_uid": {
"data": {
"type": "user--user",
"id": "13d3e25c-0c23-40b9-9a03-1b75200f8710",
"meta": {
"drupal_internal__target_id": 4
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/0b7fe22e-7498-42b7-81f8-85c2eb3494fa\/revision_uid?resourceVersion=id%3A24"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/0b7fe22e-7498-42b7-81f8-85c2eb3494fa\/relationships\/revision_uid?resourceVersion=id%3A24"
}
}
},
"uid": {
"data": {
"type": "user--user",
"id": "13d3e25c-0c23-40b9-9a03-1b75200f8710",
"meta": {
"drupal_internal__target_id": 4
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/0b7fe22e-7498-42b7-81f8-85c2eb3494fa\/uid?resourceVersion=id%3A24"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/0b7fe22e-7498-42b7-81f8-85c2eb3494fa\/relationships\/uid?resourceVersion=id%3A24"
}
}
},
"field_media_image": {
"data": {
"type": "media--image",
"id": "7bcc7168-5e6c-418c-b04b-1c4b4c716ce5",
"meta": {
"drupal_internal__target_id": 11
}
},
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/0b7fe22e-7498-42b7-81f8-85c2eb3494fa\/field_media_image?resourceVersion=id%3A24"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/0b7fe22e-7498-42b7-81f8-85c2eb3494fa\/relationships\/field_media_image?resourceVersion=id%3A24"
}
}
},
"field_tags": {
"data": [
{
"type": "taxonomy_term--tags",
"id": "0ea414a5-fb88-4dd0-bc4a-4de710b8cb6e",
"meta": {
"drupal_internal__target_id": 27
}
},
{
"type": "taxonomy_term--tags",
"id": "15ccbe1b-3b77-48cc-ac0e-1a8e6ea5cb1c",
"meta": {
"drupal_internal__target_id": 7
}
}
],
"links": {
"related": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/0b7fe22e-7498-42b7-81f8-85c2eb3494fa\/field_tags?resourceVersion=id%3A24"
},
"self": {
"href": "https:\/\/next.demo.composetheweb.com\/en\/jsonapi\/node\/article\/0b7fe22e-7498-42b7-81f8-85c2eb3494fa\/relationships\/field_tags?resourceVersion=id%3A24"
}
}
}
}
},
{