forked from jarhot1992/Remote-ADB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAnglotopia.xml
More file actions
2149 lines (1646 loc) · 248 KB
/
Anglotopia.xml
File metadata and controls
2149 lines (1646 loc) · 248 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
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
<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
xmlns:content="http://purl.org/rss/1.0/modules/content/"
xmlns:wfw="http://wellformedweb.org/CommentAPI/"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:atom="http://www.w3.org/2005/Atom"
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
xmlns:georss="http://www.georss.org/georss"
xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
>
<channel>
<title>Anglotopia.net</title>
<atom:link href="https://anglotopia.net/feed/" rel="self" type="application/rss+xml" />
<link>https://anglotopia.net/</link>
<description>The Website for People Who Love Britain - Anglophiles</description>
<lastBuildDate>Tue, 26 Dec 2023 13:05:11 +0000</lastBuildDate>
<language>en-US</language>
<sy:updatePeriod>
hourly </sy:updatePeriod>
<sy:updateFrequency>
1 </sy:updateFrequency>
<generator>https://wordpress.org/?v=6.1.4</generator>
<image>
<url>https://anglotopia.net/wp-content/uploads/2018/12/cropped-Anglotopia-logo-2-copy-nobg-32x32.png</url>
<title>Anglotopia.net</title>
<link>https://anglotopia.net/</link>
<width>32</width>
<height>32</height>
</image>
<site xmlns="com-wordpress:feed-additions:1">47568361</site> <item>
<title>Unwrapping Boxing Day: 10 Fascinating Facts and Figures about this British Tradition</title>
<link>https://anglotopia.net/anglophilia/unwrapping-boxing-day-10-fascinating-facts-and-figures-about-this-british-tradition/</link>
<comments>https://anglotopia.net/anglophilia/unwrapping-boxing-day-10-fascinating-facts-and-figures-about-this-british-tradition/#respond</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Tue, 26 Dec 2023 13:05:07 +0000</pubDate>
<category><![CDATA[Anglophilia]]></category>
<category><![CDATA[British History]]></category>
<category><![CDATA[Britishness]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101435</guid>
<description><![CDATA[<img width="590" height="393" src="https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166977956_XL-590x393.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166977956_XL-590x393.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166977956_XL-300x200.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166977956_XL-768x512.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166977956_XL-1536x1023.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166977956_XL-2048x1364.jpg 2048w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166977956_XL-800x533.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166977956_XL-1320x879.jpg 1320w" sizes="(max-width: 590px) 100vw, 590px" /><p>Boxing Day, observed on the day after Christmas, has long been a cherished tradition in Britain. Steeped in history and laden with unique customs, this day holds a special place in the hearts of many Brits. In this article, we delve into 10 interesting facts and figures that shed light on the significance and peculiarities […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/anglophilia/unwrapping-boxing-day-10-fascinating-facts-and-figures-about-this-british-tradition/">Unwrapping Boxing Day: 10 Fascinating Facts and Figures about this British Tradition</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/anglophilia/unwrapping-boxing-day-10-fascinating-facts-and-figures-about-this-british-tradition/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101435</post-id> </item>
<item>
<title>The King’s 2023 Official Christmas Message – Full Video</title>
<link>https://anglotopia.net/anglophilia/christmas/the-kings-2023-official-christmas-message-full-video/</link>
<comments>https://anglotopia.net/anglophilia/christmas/the-kings-2023-official-christmas-message-full-video/#respond</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Mon, 25 Dec 2023 16:41:49 +0000</pubDate>
<category><![CDATA[Christmas]]></category>
<category><![CDATA[Featured]]></category>
<category><![CDATA[Royal Traditions]]></category>
<category><![CDATA[Royal Videos]]></category>
<category><![CDATA[Royals]]></category>
<category><![CDATA[The King]]></category>
<category><![CDATA[Videos]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101430</guid>
<description><![CDATA[<img width="590" height="332" src="https://anglotopia.net/wp-content/uploads/2023/12/maxresdefault-1-590x332.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/12/maxresdefault-1-590x332.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/12/maxresdefault-1-300x169.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/12/maxresdefault-1-768x432.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/12/maxresdefault-1-800x450.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/12/maxresdefault-1.jpg 1280w" sizes="(max-width: 590px) 100vw, 590px" /><p>As is our tradition here at Anglotopia, here is the King’s 2023 Christmas message in full. King Charles spoke of faith, fellowship, and compassion in his second Christmas message. He thanked the “selfless army” of volunteers who he said were the “backbone” of British society, even on Christmas day. Happy Christmas, everyone! Here is the […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/anglophilia/christmas/the-kings-2023-official-christmas-message-full-video/">The King’s 2023 Official Christmas Message – Full Video</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/anglophilia/christmas/the-kings-2023-official-christmas-message-full-video/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101430</post-id> </item>
<item>
<title>One Anglophile’s Take on The Lion in Winter</title>
<link>https://anglotopia.net/british-entertainment/british-movies/one-anglophiles-take-on-the-lion-in-winter/</link>
<comments>https://anglotopia.net/british-entertainment/british-movies/one-anglophiles-take-on-the-lion-in-winter/#comments</comments>
<dc:creator><![CDATA[Derek]]></dc:creator>
<pubDate>Thu, 21 Dec 2023 16:09:05 +0000</pubDate>
<category><![CDATA[British Movies]]></category>
<category><![CDATA[Christmas]]></category>
<category><![CDATA[Medieval Era]]></category>
<category><![CDATA[Plantagenet Era]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101411</guid>
<description><![CDATA[<img width="590" height="367" src="https://anglotopia.net/wp-content/uploads/2023/12/THE-LION-IN-WINTER-web-update1520-4263255367-590x367.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/12/THE-LION-IN-WINTER-web-update1520-4263255367-590x367.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/12/THE-LION-IN-WINTER-web-update1520-4263255367-300x187.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/12/THE-LION-IN-WINTER-web-update1520-4263255367-768x477.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/12/THE-LION-IN-WINTER-web-update1520-4263255367-800x497.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/12/THE-LION-IN-WINTER-web-update1520-4263255367-1320x821.jpg 1320w, https://anglotopia.net/wp-content/uploads/2023/12/THE-LION-IN-WINTER-web-update1520-4263255367.jpg 1520w" sizes="(max-width: 590px) 100vw, 590px" /><p>As I write this, it’s December, only a few days until Christmas. And for the past couple weeks, I’ve been watching quite a few Christmas movies. Not the sort of cookie-cutter movies Hallmark and other companies keep churning out. I’m talking legitimately good movies that just happened to fall on Christmas. One movie I found […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/british-movies/one-anglophiles-take-on-the-lion-in-winter/">One Anglophile’s Take on The Lion in Winter</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/british-movies/one-anglophiles-take-on-the-lion-in-winter/feed/</wfw:commentRss>
<slash:comments>2</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101411</post-id> </item>
<item>
<title>Tickets on sale for Pop-Up hotels at Glastonbury</title>
<link>https://anglotopia.net/site-news/uncategorized/tickets-on-sale-for-pop-up-hotels-at-glastonbury/</link>
<comments>https://anglotopia.net/site-news/uncategorized/tickets-on-sale-for-pop-up-hotels-at-glastonbury/#respond</comments>
<dc:creator><![CDATA[Derek]]></dc:creator>
<pubDate>Fri, 15 Dec 2023 16:24:58 +0000</pubDate>
<category><![CDATA[Uncategorized]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101394</guid>
<description><![CDATA[<img width="480" height="360" src="https://anglotopia.net/wp-content/uploads/2022/02/emily-eavis-reveals-when-to-expe.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2022/02/emily-eavis-reveals-when-to-expe.jpg 480w, https://anglotopia.net/wp-content/uploads/2022/02/emily-eavis-reveals-when-to-expe-300x225.jpg 300w" sizes="(max-width: 480px) 100vw, 480px" /><p>In 2011, Glastonbury set up a “Pop-Up Hotel” for the first time. On 14 December 2023, I heard about it for the first time. Quoth the Pop-Up Hotel’s website, “For those who enjoy the freedom that comes with camping, but don’t want to compromise when it comes to their home comforts, glamping is the perfect […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/site-news/uncategorized/tickets-on-sale-for-pop-up-hotels-at-glastonbury/">Tickets on sale for Pop-Up hotels at Glastonbury</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/site-news/uncategorized/tickets-on-sale-for-pop-up-hotels-at-glastonbury/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101394</post-id> </item>
<item>
<title>Royal 101: Royal Country Homes</title>
<link>https://anglotopia.net/royals/royal-101-royal-country-homes/</link>
<comments>https://anglotopia.net/royals/royal-101-royal-country-homes/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Wed, 13 Dec 2023 19:01:16 +0000</pubDate>
<category><![CDATA[Royal Explainers]]></category>
<category><![CDATA[Royals]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=91620</guid>
<description><![CDATA[<img width="590" height="387" src="https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166472572_L-590x387.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166472572_L-590x387.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166472572_L-300x197.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166472572_L-768x503.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166472572_L-1536x1007.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166472572_L-800x524.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166472572_L-1320x865.jpg 1320w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_166472572_L.jpg 2000w" sizes="(max-width: 590px) 100vw, 590px" /><p>While many homes inhabited by the Royal Family are actually the property of the Crown, there are residences within the family’s portfolio that are their private property.  The castles and palaces don’t fall into this category, but plenty of country estates do.  These country homes include some pretty well-known estates that have been in the […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/royals/royal-101-royal-country-homes/">Royal 101: Royal Country Homes</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/royals/royal-101-royal-country-homes/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">91620</post-id> </item>
<item>
<title>New research shows the most beautiful bus routes in Britain</title>
<link>https://anglotopia.net/british-travel/new-research-shows-the-most-beautiful-bus-routes-in-britain/</link>
<comments>https://anglotopia.net/british-travel/new-research-shows-the-most-beautiful-bus-routes-in-britain/#respond</comments>
<dc:creator><![CDATA[Anglotopia Staff]]></dc:creator>
<pubDate>Wed, 13 Dec 2023 16:59:09 +0000</pubDate>
<category><![CDATA[Travel]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=81072</guid>
<description><![CDATA[<img width="590" height="393" src="https://anglotopia.net/wp-content/uploads/2023/12/pasted-image-0-590x393.png" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/12/pasted-image-0-590x393.png 590w, https://anglotopia.net/wp-content/uploads/2023/12/pasted-image-0-300x200.png 300w, https://anglotopia.net/wp-content/uploads/2023/12/pasted-image-0-768x512.png 768w, https://anglotopia.net/wp-content/uploads/2023/12/pasted-image-0-800x533.png 800w, https://anglotopia.net/wp-content/uploads/2023/12/pasted-image-0-1320x880.png 1320w, https://anglotopia.net/wp-content/uploads/2023/12/pasted-image-0.png 1470w" sizes="(max-width: 590px) 100vw, 590px" /><p>A new study has revealed the top 10 most scenic bus routes in the UK. The study, conducted by over 50s experts SunLife, analyzed over 40 different bus routes throughout the country, based on Instagram hashtags. So, if you’re looking for some inspiration for your next trip, keep reading to discover the most picturesque bus […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-travel/new-research-shows-the-most-beautiful-bus-routes-in-britain/">New research shows the most beautiful bus routes in Britain</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-travel/new-research-shows-the-most-beautiful-bus-routes-in-britain/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">81072</post-id> </item>
<item>
<title>The Fiver – Five British Actors in DC and Marvel Films</title>
<link>https://anglotopia.net/british-entertainment/the-fiver-five-british-actors-in-dc-and-marvel-films/</link>
<comments>https://anglotopia.net/british-entertainment/the-fiver-five-british-actors-in-dc-and-marvel-films/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Wed, 13 Dec 2023 15:44:10 +0000</pubDate>
<category><![CDATA[British Movies]]></category>
<category><![CDATA[Entertainment]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=74653</guid>
<description><![CDATA[<img width="590" height="308" src="https://anglotopia.net/wp-content/uploads/2023/12/rexfeatures_2103279ac-e1457052297936-590x308.webp" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/12/rexfeatures_2103279ac-e1457052297936-590x308.webp 590w, https://anglotopia.net/wp-content/uploads/2023/12/rexfeatures_2103279ac-e1457052297936-300x157.webp 300w, https://anglotopia.net/wp-content/uploads/2023/12/rexfeatures_2103279ac-e1457052297936-768x401.webp 768w, https://anglotopia.net/wp-content/uploads/2023/12/rexfeatures_2103279ac-e1457052297936-1536x803.webp 1536w, https://anglotopia.net/wp-content/uploads/2023/12/rexfeatures_2103279ac-e1457052297936-2048x1070.webp 2048w, https://anglotopia.net/wp-content/uploads/2023/12/rexfeatures_2103279ac-e1457052297936-800x418.webp 800w, https://anglotopia.net/wp-content/uploads/2023/12/rexfeatures_2103279ac-e1457052297936-1320x690.webp 1320w" sizes="(max-width: 590px) 100vw, 590px" /><p>There’s a lot of hay made about the rivalry between DC Comics and Marvel Comics’ film adaptations, but over the decades since 1978’s Superman and 1986’s Howard the Duck (yes, it is technically the first Marvel movie), plenty of actors have crossed over from one universe to the other. From heroes to villains and vice-versa, […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/the-fiver-five-british-actors-in-dc-and-marvel-films/">The Fiver – Five British Actors in DC and Marvel Films</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/the-fiver-five-british-actors-in-dc-and-marvel-films/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">74653</post-id> </item>
<item>
<title>A Fairytale of New York: The Story of the Least Likely Holiday Hit</title>
<link>https://anglotopia.net/british-entertainment/british-music-british-entertainment/a-fairytale-of-new-york-the-story-of-the-least-likely-holiday-hit/</link>
<comments>https://anglotopia.net/british-entertainment/british-music-british-entertainment/a-fairytale-of-new-york-the-story-of-the-least-likely-holiday-hit/#respond</comments>
<dc:creator><![CDATA[Derek]]></dc:creator>
<pubDate>Thu, 07 Dec 2023 14:27:44 +0000</pubDate>
<category><![CDATA[British Music]]></category>
<category><![CDATA[1]]></category>
<category><![CDATA[17]]></category>
<category><![CDATA[18]]></category>
<category><![CDATA[2]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101363</guid>
<description><![CDATA[<img width="590" height="332" src="https://anglotopia.net/wp-content/uploads/2023/12/maxresdefault-590x332.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/12/maxresdefault-590x332.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/12/maxresdefault-300x169.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/12/maxresdefault-768x432.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/12/maxresdefault-800x450.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/12/maxresdefault.jpg 1280w" sizes="(max-width: 590px) 100vw, 590px" /><p>On 30 November 2023, Shane MacGowan, lead singer of Punk group The Pogues, died of pneumonia. As a longtime Pogues fan, I decided I should find a way to pay homage. Perhaps I should write a whole biography for him here. But then, December hit. I remembered “Fairy Tale of New York.” I thought, maybe […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/british-music-british-entertainment/a-fairytale-of-new-york-the-story-of-the-least-likely-holiday-hit/">A Fairytale of New York: The Story of the Least Likely Holiday Hit</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/british-music-british-entertainment/a-fairytale-of-new-york-the-story-of-the-least-likely-holiday-hit/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101363</post-id> </item>
<item>
<title>10 Cozy British Christmas Traditions</title>
<link>https://anglotopia.net/anglophilia/christmas/10-cozy-british-christmas-traditions/</link>
<comments>https://anglotopia.net/anglophilia/christmas/10-cozy-british-christmas-traditions/#comments</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Wed, 06 Dec 2023 17:47:29 +0000</pubDate>
<category><![CDATA[Anglophilia]]></category>
<category><![CDATA[Christmas]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101359</guid>
<description><![CDATA[<img width="590" height="392" src="https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_15519179_XL-590x392.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_15519179_XL-590x392.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_15519179_XL-300x199.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_15519179_XL-768x510.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_15519179_XL-1536x1020.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_15519179_XL-2048x1360.jpg 2048w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_15519179_XL-800x531.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/12/Depositphotos_15519179_XL-1320x877.jpg 1320w" sizes="(max-width: 590px) 100vw, 590px" /><p>Christmas is a time of festivity, joy, and happiness for people all around the world. Every country has its own unique set of traditions and customs that make the holiday season special. In the United Kingdom, Christmas is celebrated with a variety of traditions that reflect the country’s rich history and culture. From the iconic […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/anglophilia/christmas/10-cozy-british-christmas-traditions/">10 Cozy British Christmas Traditions</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/anglophilia/christmas/10-cozy-british-christmas-traditions/feed/</wfw:commentRss>
<slash:comments>4</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101359</post-id> </item>
<item>
<title>The Fiver – Five Famous Brits You Didn’t Know Were in Star Wars</title>
<link>https://anglotopia.net/british-entertainment/british-movies/the-fiver-five-famous-brits-you-didnt-know-were-in-star-wars/</link>
<comments>https://anglotopia.net/british-entertainment/british-movies/the-fiver-five-famous-brits-you-didnt-know-were-in-star-wars/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Wed, 06 Dec 2023 16:24:57 +0000</pubDate>
<category><![CDATA[British Movies]]></category>
<category><![CDATA[Entertainment]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=74868</guid>
<description><![CDATA[<img width="590" height="290" src="https://anglotopia.net/wp-content/uploads/2023/12/8People-2726643234-590x290.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/12/8People-2726643234-590x290.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/12/8People-2726643234-300x148.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/12/8People-2726643234-768x378.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/12/8People-2726643234-1536x756.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/12/8People-2726643234-800x394.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/12/8People-2726643234-1320x650.jpg 1320w, https://anglotopia.net/wp-content/uploads/2023/12/8People-2726643234.jpg 1920w" sizes="(max-width: 590px) 100vw, 590px" /><p>For every Han, Luke, and Leia, whose faces grace the silver screen across multiple films, there are plenty of actors who play their parts without us knowing who they really are. Whether covered in alien makeup, wearing helmets, or CGI’d into something entirely not human, these actors deliver no less memorable roles. In fact, you […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/british-movies/the-fiver-five-famous-brits-you-didnt-know-were-in-star-wars/">The Fiver – Five Famous Brits You Didn’t Know Were in Star Wars</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/british-movies/the-fiver-five-famous-brits-you-didnt-know-were-in-star-wars/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">74868</post-id> </item>
<item>
<title>Book Excerpt: End to End – A History of Travels Around Britain</title>
<link>https://anglotopia.net/anglophilia/anglophile-alert/book-excerpt-end-to-end-a-history-of-travels-around-britain/</link>
<comments>https://anglotopia.net/anglophilia/anglophile-alert/book-excerpt-end-to-end-a-history-of-travels-around-britain/#respond</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Mon, 04 Dec 2023 20:53:48 +0000</pubDate>
<category><![CDATA[Anglo-Saxon]]></category>
<category><![CDATA[Anglophile Alerts]]></category>
<category><![CDATA[Anglophile Deals]]></category>
<category><![CDATA[Anglotopia Press]]></category>
<category><![CDATA[Anglotopia's Grand Adventure - Land's End to John O'Groats]]></category>
<category><![CDATA[Brit Book Deals]]></category>
<category><![CDATA[British History]]></category>
<category><![CDATA[British Landscape]]></category>
<category><![CDATA[Featured]]></category>
<category><![CDATA[Long Reads]]></category>
<category><![CDATA[Medieval Era]]></category>
<category><![CDATA[Travel]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101348</guid>
<description><![CDATA[<img width="590" height="369" src="https://anglotopia.net/wp-content/uploads/2023/12/DSC02129-edited-590x369.jpeg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/12/DSC02129-edited-590x369.jpeg 590w, https://anglotopia.net/wp-content/uploads/2023/12/DSC02129-edited-300x188.jpeg 300w, https://anglotopia.net/wp-content/uploads/2023/12/DSC02129-edited-768x480.jpeg 768w, https://anglotopia.net/wp-content/uploads/2023/12/DSC02129-edited-1536x960.jpeg 1536w, https://anglotopia.net/wp-content/uploads/2023/12/DSC02129-edited-2048x1280.jpeg 2048w, https://anglotopia.net/wp-content/uploads/2023/12/DSC02129-edited-800x500.jpeg 800w, https://anglotopia.net/wp-content/uploads/2023/12/DSC02129-edited-1320x825.jpeg 1320w" sizes="(max-width: 590px) 100vw, 590px" /><p>First, thank you to everyone who has bought a copy of my new book End to End: Britain From Land’s End to John o’Groats so far! It’s always rewarding for something you’ve worked for so long on to start to be enjoyed by people. Over the next few weeks, I will share a few excerpts […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/anglophilia/anglophile-alert/book-excerpt-end-to-end-a-history-of-travels-around-britain/">Book Excerpt: End to End – A History of Travels Around Britain</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/anglophilia/anglophile-alert/book-excerpt-end-to-end-a-history-of-travels-around-britain/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101348</post-id> </item>
<item>
<title>New Book: End to End – Britain From Land’s End to John o’Groats – A Travel Memoir</title>
<link>https://anglotopia.net/anglophilia/anglophile-alert/new-book-end-to-end-britain-from-lands-end-to-john-ogroats-a-travel-memoir/</link>
<comments>https://anglotopia.net/anglophilia/anglophile-alert/new-book-end-to-end-britain-from-lands-end-to-john-ogroats-a-travel-memoir/#respond</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Fri, 01 Dec 2023 15:00:00 +0000</pubDate>
<category><![CDATA[Anglophile Alerts]]></category>
<category><![CDATA[Anglophile Deals]]></category>
<category><![CDATA[Anglotopia News]]></category>
<category><![CDATA[Anglotopia's Grand Adventure - Land's End to John O'Groats]]></category>
<category><![CDATA[Brit Book Deals]]></category>
<category><![CDATA[British History]]></category>
<category><![CDATA[End to End]]></category>
<category><![CDATA[Featured]]></category>
<category><![CDATA[Inspiration]]></category>
<category><![CDATA[Royal Family]]></category>
<category><![CDATA[Royal History]]></category>
<category><![CDATA[Royals]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101333</guid>
<description><![CDATA[<img width="590" height="472" src="https://anglotopia.net/wp-content/uploads/2023/11/Hardcover-Book-In-Hand-Mockup-Recovered-1-590x472.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/Hardcover-Book-In-Hand-Mockup-Recovered-1-590x472.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/11/Hardcover-Book-In-Hand-Mockup-Recovered-1-300x240.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/11/Hardcover-Book-In-Hand-Mockup-Recovered-1-768x614.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/11/Hardcover-Book-In-Hand-Mockup-Recovered-1-1536x1229.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/11/Hardcover-Book-In-Hand-Mockup-Recovered-1-2048x1638.jpg 2048w, https://anglotopia.net/wp-content/uploads/2023/11/Hardcover-Book-In-Hand-Mockup-Recovered-1-800x640.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/11/Hardcover-Book-In-Hand-Mockup-Recovered-1-1320x1056.jpg 1320w" sizes="(max-width: 590px) 100vw, 590px" /><p>Finally, after years of writing and refining, I’m excited to announce that my latest book, End to End: Britain From Land’s End to John o’Groats, is now available for sale from us and from booksellers everywhere. It’s a travel memoir exploring Britain from Cornwall all the way to Scotland. It’s available to order today directly […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/anglophilia/anglophile-alert/new-book-end-to-end-britain-from-lands-end-to-john-ogroats-a-travel-memoir/">New Book: End to End – Britain From Land’s End to John o’Groats – A Travel Memoir</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/anglophilia/anglophile-alert/new-book-end-to-end-britain-from-lands-end-to-john-ogroats-a-travel-memoir/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101333</post-id> </item>
<item>
<title>David Gilmour and The Orb launch an AI remixing site</title>
<link>https://anglotopia.net/british-entertainment/british-music-british-entertainment/david-gilmour-and-the-orb-launch-an-ai-remixing-site/</link>
<comments>https://anglotopia.net/british-entertainment/british-music-british-entertainment/david-gilmour-and-the-orb-launch-an-ai-remixing-site/#respond</comments>
<dc:creator><![CDATA[Derek]]></dc:creator>
<pubDate>Thu, 30 Nov 2023 14:59:11 +0000</pubDate>
<category><![CDATA[British Music]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101331</guid>
<description><![CDATA[<p>In 2008, Pink Floyd’s David Gilmour released a cover of, of all songs, Graham Nash’s “Chicago.” After recording it, he reached out to English Ambient Techno group The Orb. They agreed on the condition that he re-record some guitar parts for them. This turned into an entire album of its own: Metallic Spheres. Over a […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/british-music-british-entertainment/david-gilmour-and-the-orb-launch-an-ai-remixing-site/">David Gilmour and The Orb launch an AI remixing site</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/british-music-british-entertainment/david-gilmour-and-the-orb-launch-an-ai-remixing-site/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101331</post-id> </item>
<item>
<title>Britain’s Top Ten Heritage and Steam Railways</title>
<link>https://anglotopia.net/site-news/featured/britains-top-ten-heritage-and-steam-railways/</link>
<comments>https://anglotopia.net/site-news/featured/britains-top-ten-heritage-and-steam-railways/#comments</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Wed, 29 Nov 2023 15:49:19 +0000</pubDate>
<category><![CDATA[British Heritage]]></category>
<category><![CDATA[Featured]]></category>
<category><![CDATA[Trains]]></category>
<category><![CDATA[Travel]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=72290</guid>
<description><![CDATA[<img width="590" height="393" src="https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_38260207_XL-590x393.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_38260207_XL-590x393.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_38260207_XL-300x200.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_38260207_XL-768x512.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_38260207_XL-1536x1024.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_38260207_XL-2048x1365.jpg 2048w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_38260207_XL-800x533.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_38260207_XL-1320x880.jpg 1320w" sizes="(max-width: 590px) 100vw, 590px" /><p>The preservation of the past should always be a top priority since it helps us understand how those who came before us live. Heritage railways are a part of this since they help keep a link to Britain’s transportation history. At one point, heritage railways were a primary means of moving goods and people, but […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/site-news/featured/britains-top-ten-heritage-and-steam-railways/">Britain’s Top Ten Heritage and Steam Railways</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/site-news/featured/britains-top-ten-heritage-and-steam-railways/feed/</wfw:commentRss>
<slash:comments>4</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">72290</post-id> </item>
<item>
<title>Ten Interesting Facts about The Pet Shop Boys</title>
<link>https://anglotopia.net/british-entertainment/ten-interesting-facts-about-the-pet-shop-boys/</link>
<comments>https://anglotopia.net/british-entertainment/ten-interesting-facts-about-the-pet-shop-boys/#comments</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Tue, 28 Nov 2023 19:15:25 +0000</pubDate>
<category><![CDATA[British Music]]></category>
<category><![CDATA[Entertainment]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=72123</guid>
<description><![CDATA[<img width="590" height="393" src="https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_33510889_XL-590x393.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_33510889_XL-590x393.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_33510889_XL-300x200.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_33510889_XL-768x511.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_33510889_XL-1536x1022.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_33510889_XL-2048x1363.jpg 2048w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_33510889_XL-800x532.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_33510889_XL-1320x878.jpg 1320w" sizes="(max-width: 590px) 100vw, 590px" /><p>Formed by Neil Tennant and Chris Lowe in 1981, the synth-pop duo have been international stars with hits like “West End Girls,” “Heart,” “It’s a Sin,” “Opportunities (Let’s Make Lots of Money),” and “Always on My Mind.” Most of their chart-topping hits came out in the 1980s and they were associated with the “Second British […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/ten-interesting-facts-about-the-pet-shop-boys/">Ten Interesting Facts about The Pet Shop Boys</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/ten-interesting-facts-about-the-pet-shop-boys/feed/</wfw:commentRss>
<slash:comments>2</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">72123</post-id> </item>
<item>
<title>Ten Types of British Cheese</title>
<link>https://anglotopia.net/british-history/ten-types-of-british-cheese/</link>
<comments>https://anglotopia.net/british-history/ten-types-of-british-cheese/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Wed, 22 Nov 2023 16:48:25 +0000</pubDate>
<category><![CDATA[British Food]]></category>
<category><![CDATA[British History]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=75686</guid>
<description><![CDATA[<img width="590" height="393" src="https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_380643526_XL-590x393.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_380643526_XL-590x393.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_380643526_XL-300x200.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_380643526_XL-768x512.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_380643526_XL-1536x1024.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_380643526_XL-2048x1365.jpg 2048w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_380643526_XL-800x533.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_380643526_XL-1320x880.jpg 1320w" sizes="(max-width: 590px) 100vw, 590px" /><p>As much as tea and beer, one of the most prominent food exports in the United Kingdom is cheese. Cheese is as much a cultural icon in Britain as anything and there are over 700 different kinds of cheese made throughout the country. Each region tends to have its own variety and whether it’s a […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-history/ten-types-of-british-cheese/">Ten Types of British Cheese</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-history/ten-types-of-british-cheese/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">75686</post-id> </item>
<item>
<title>Olivia Harrison gives her story for “Now and Then.”</title>
<link>https://anglotopia.net/british-entertainment/british-music-british-entertainment/olivia-harrison-gives-her-story-for-now-and-then/</link>
<comments>https://anglotopia.net/british-entertainment/british-music-british-entertainment/olivia-harrison-gives-her-story-for-now-and-then/#respond</comments>
<dc:creator><![CDATA[Derek]]></dc:creator>
<pubDate>Wed, 22 Nov 2023 15:07:04 +0000</pubDate>
<category><![CDATA[Beatles]]></category>
<category><![CDATA[British Music]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101303</guid>
<description><![CDATA[<img width="480" height="360" src="https://anglotopia.net/wp-content/uploads/2023/11/hqdefault.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/hqdefault.jpg 480w, https://anglotopia.net/wp-content/uploads/2023/11/hqdefault-300x225.jpg 300w" sizes="(max-width: 480px) 100vw, 480px" /><p>If you bought the 7″ single for the Beatles’ “Now and Then,” you probably noticed the back cover. It featured a strange-looking clock, one that seems to have been made out of a bunch of spare items that just happened to be lying around. As I trawled through the Beatles’ subreddit, it seemed that, while […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/british-music-british-entertainment/olivia-harrison-gives-her-story-for-now-and-then/">Olivia Harrison gives her story for “Now and Then.”</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/british-music-british-entertainment/olivia-harrison-gives-her-story-for-now-and-then/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101303</post-id> </item>
<item>
<title>The Fiver – Five British Dystopias</title>
<link>https://anglotopia.net/british-entertainment/the-fiver-five-british-dystopias/</link>
<comments>https://anglotopia.net/british-entertainment/the-fiver-five-british-dystopias/#comments</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Tue, 21 Nov 2023 15:14:42 +0000</pubDate>
<category><![CDATA[British Movies]]></category>
<category><![CDATA[British TV]]></category>
<category><![CDATA[Entertainment]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=69351</guid>
<description><![CDATA[<img width="590" height="443" src="https://anglotopia.net/wp-content/uploads/2023/11/john-hurt-1984-590x443.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/john-hurt-1984-590x443.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/11/john-hurt-1984-300x225.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/11/john-hurt-1984-768x576.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/11/john-hurt-1984-1536x1152.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/11/john-hurt-1984-800x600.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/11/john-hurt-1984-1320x990.jpg 1320w, https://anglotopia.net/wp-content/uploads/2023/11/john-hurt-1984.jpg 2000w" sizes="(max-width: 590px) 100vw, 590px" /><p>By its nature, satire is a form of storytelling that is used to take a critical lens to the ills of a society, organization, government, or individual. Dystopias depict a future that has gone wrong. More often than not, these two walk hand-in-hand, creating a world that serves as a warning to us today. Dystopian […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/the-fiver-five-british-dystopias/">The Fiver – Five British Dystopias</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/the-fiver-five-british-dystopias/feed/</wfw:commentRss>
<slash:comments>1</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">69351</post-id> </item>
<item>
<title>Ten Interesting Facts about the Film Willow</title>
<link>https://anglotopia.net/british-entertainment/ten-interesting-facts-about-the-film-willow/</link>
<comments>https://anglotopia.net/british-entertainment/ten-interesting-facts-about-the-film-willow/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Wed, 15 Nov 2023 16:10:25 +0000</pubDate>
<category><![CDATA[British Movies]]></category>
<category><![CDATA[Entertainment]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=90542</guid>
<description><![CDATA[<img width="590" height="393" src="https://anglotopia.net/wp-content/uploads/2023/11/Willow1-590x393.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/Willow1-590x393.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/11/Willow1-300x200.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/11/Willow1-768x512.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/11/Willow1-800x533.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/11/Willow1.jpg 1200w" sizes="(max-width: 590px) 100vw, 590px" /><p>Having succeeded in science-fiction and supernatural adventure, in 1988 Lucasfilm turned its attention to fantasy. The film Willow featured the titular protagonist saddled with the responsibility of protecting a baby that was destined to bring down an evil queen. Starring a relatively unknown Warwick Davis in his first leading role along with Val Kilmer, Joanne […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/ten-interesting-facts-about-the-film-willow/">Ten Interesting Facts about the Film Willow</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/ten-interesting-facts-about-the-film-willow/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">90542</post-id> </item>
<item>
<title>The Fiver: Five British Films Featured on Mystery Science Theater 3000</title>
<link>https://anglotopia.net/british-entertainment/the-fiver-five-british-films-featured-on-mystery-science-theater-3000/</link>
<comments>https://anglotopia.net/british-entertainment/the-fiver-five-british-films-featured-on-mystery-science-theater-3000/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Wed, 15 Nov 2023 15:58:51 +0000</pubDate>
<category><![CDATA[British Movies]]></category>
<category><![CDATA[Entertainment]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=77526</guid>
<description><![CDATA[<img width="590" height="332" src="https://anglotopia.net/wp-content/uploads/2023/11/gorgo-ireland-590x332.jpeg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/gorgo-ireland-590x332.jpeg 590w, https://anglotopia.net/wp-content/uploads/2023/11/gorgo-ireland-300x169.jpeg 300w, https://anglotopia.net/wp-content/uploads/2023/11/gorgo-ireland-768x432.jpeg 768w, https://anglotopia.net/wp-content/uploads/2023/11/gorgo-ireland-800x450.jpeg 800w, https://anglotopia.net/wp-content/uploads/2023/11/gorgo-ireland.jpeg 1000w" sizes="(max-width: 590px) 100vw, 590px" /><p>In the not-too-distant future…well, the distant past really. Back in 1988, a little show starring prop comedian Joel Hodgson debuted on a small Minnesota station. It had a simple premise of a man stuck on a space station with his two robot friends, forced to watch bad movies by a pair of mad scientists. In […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/the-fiver-five-british-films-featured-on-mystery-science-theater-3000/">The Fiver: Five British Films Featured on Mystery Science Theater 3000</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/the-fiver-five-british-films-featured-on-mystery-science-theater-3000/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">77526</post-id> </item>
<item>
<title>Bowie’s Snowman scarf now for sale</title>
<link>https://anglotopia.net/british-entertainment/british-music-british-entertainment/bowies-snowman-scarf-now-for-sale/</link>
<comments>https://anglotopia.net/british-entertainment/british-music-british-entertainment/bowies-snowman-scarf-now-for-sale/#respond</comments>
<dc:creator><![CDATA[Derek]]></dc:creator>
<pubDate>Tue, 14 Nov 2023 16:45:25 +0000</pubDate>
<category><![CDATA[British Music]]></category>
<category><![CDATA[British TV]]></category>
<category><![CDATA[Christmas]]></category>
<category><![CDATA[Christmas Specials]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101272</guid>
<description><![CDATA[<img width="590" height="375" src="https://anglotopia.net/wp-content/uploads/2023/11/Ep7LC8QXUAAi5HN-696x442-1-590x375.jpeg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/Ep7LC8QXUAAi5HN-696x442-1-590x375.jpeg 590w, https://anglotopia.net/wp-content/uploads/2023/11/Ep7LC8QXUAAi5HN-696x442-1-300x191.jpeg 300w, https://anglotopia.net/wp-content/uploads/2023/11/Ep7LC8QXUAAi5HN-696x442-1.jpeg 696w" sizes="(max-width: 590px) 100vw, 590px" /><p>A few years ago, I wrote a big article about The Snowman. One of the many bases I covered was this little intro David Bowie made for the few times it aired in America. At least it still airs on Channel 4 more often than not. Bowie played a grown-up version of the boy from […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/british-music-british-entertainment/bowies-snowman-scarf-now-for-sale/">Bowie’s Snowman scarf now for sale</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/british-music-british-entertainment/bowies-snowman-scarf-now-for-sale/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101272</post-id> </item>
<item>
<title>The man on the Led Zeppelin IV cover identified</title>
<link>https://anglotopia.net/british-entertainment/british-music-british-entertainment/the-man-on-the-led-zeppelin-iv-cover-identified/</link>
<comments>https://anglotopia.net/british-entertainment/british-music-british-entertainment/the-man-on-the-led-zeppelin-iv-cover-identified/#respond</comments>
<dc:creator><![CDATA[Derek]]></dc:creator>
<pubDate>Fri, 10 Nov 2023 15:57:54 +0000</pubDate>
<category><![CDATA[British Music]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101266</guid>
<description><![CDATA[<img width="525" height="590" src="https://anglotopia.net/wp-content/uploads/2023/11/Lot_Longyear_1892-525x590.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/Lot_Longyear_1892-525x590.jpg 525w, https://anglotopia.net/wp-content/uploads/2023/11/Lot_Longyear_1892-267x300.jpg 267w, https://anglotopia.net/wp-content/uploads/2023/11/Lot_Longyear_1892.jpg 533w" sizes="(max-width: 525px) 100vw, 525px" /><p>Note: this article is best read with your vinyl copy of Led Zeppelin’s Fourth Album out. If you don’t have one, here’s the band’s official upload of the entire album. That said, having the album art at hand will be important. The cover art for Led Zeppelin’s fourth album is one of the most notorious […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/british-music-british-entertainment/the-man-on-the-led-zeppelin-iv-cover-identified/">The man on the Led Zeppelin IV cover identified</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/british-music-british-entertainment/the-man-on-the-led-zeppelin-iv-cover-identified/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101266</post-id> </item>
<item>
<title>Royal History: Uncrowned Monarchs</title>
<link>https://anglotopia.net/british-history/royal-history-uncrowned-monarchs/</link>
<comments>https://anglotopia.net/british-history/royal-history-uncrowned-monarchs/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Wed, 08 Nov 2023 20:02:45 +0000</pubDate>
<category><![CDATA[British History]]></category>
<category><![CDATA[Featured]]></category>
<category><![CDATA[Royal History]]></category>
<category><![CDATA[Royals]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=92595</guid>
<description><![CDATA[<img width="590" height="392" src="https://anglotopia.net/wp-content/uploads/2014/08/Edward-VIII-590x392.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2014/08/Edward-VIII-590x392.jpg 590w, https://anglotopia.net/wp-content/uploads/2014/08/Edward-VIII-300x199.jpg 300w" sizes="(max-width: 590px) 100vw, 590px" /><p>Ever since the crowning of King William I in Westminster Abbey in 1066, the coronation of the British monarch has been a major affair for the United Kingdom. However, this grand ceremony has not been enjoyed by every individual to call themselves king or queen, and several never made it to this point. The reigns […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-history/royal-history-uncrowned-monarchs/">Royal History: Uncrowned Monarchs</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-history/royal-history-uncrowned-monarchs/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">92595</post-id> </item>
<item>
<title>Ten British Actors with Great American Accents</title>
<link>https://anglotopia.net/british-entertainment/ten-british-actors-with-great-american-accents/</link>
<comments>https://anglotopia.net/british-entertainment/ten-british-actors-with-great-american-accents/#comments</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Wed, 08 Nov 2023 17:53:26 +0000</pubDate>
<category><![CDATA[Celebrities]]></category>
<category><![CDATA[Entertainment]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=92022</guid>
<description><![CDATA[<img width="590" height="392" src="https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_239206656_XL-590x392.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_239206656_XL-590x392.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_239206656_XL-300x199.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_239206656_XL-768x510.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_239206656_XL-1536x1020.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_239206656_XL-2048x1359.jpg 2048w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_239206656_XL-800x531.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/11/Depositphotos_239206656_XL-1320x876.jpg 1320w" sizes="(max-width: 590px) 100vw, 590px" /><p>Acting often requires taking on roles very different from one’s own personality and upbringing, which also sometimes requires taking on accents from completely different parts of the world. Some actors are quite good at this, while others are not so much. With plenty of movies and television shows filming in Atlanta and Los Angeles, actors […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/ten-british-actors-with-great-american-accents/">Ten British Actors with Great American Accents</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/ten-british-actors-with-great-american-accents/feed/</wfw:commentRss>
<slash:comments>2</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">92022</post-id> </item>
<item>
<title>The Beatles release “Now and Then,” their final song</title>
<link>https://anglotopia.net/british-entertainment/british-music-british-entertainment/the-beatles-release-now-and-then-their-final-song/</link>
<comments>https://anglotopia.net/british-entertainment/british-music-british-entertainment/the-beatles-release-now-and-then-their-final-song/#respond</comments>
<dc:creator><![CDATA[Derek]]></dc:creator>
<pubDate>Fri, 03 Nov 2023 13:00:01 +0000</pubDate>
<category><![CDATA[Beatles]]></category>
<category><![CDATA[British Music]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101245</guid>
<description><![CDATA[<img width="480" height="360" src="https://anglotopia.net/wp-content/uploads/2023/11/hqdefault.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/hqdefault.jpg 480w, https://anglotopia.net/wp-content/uploads/2023/11/hqdefault-300x225.jpg 300w" sizes="(max-width: 480px) 100vw, 480px" /><p>It’s official. The Beatles are back, even if it’s only for a few minutes. Last week, I wrote about how the Beatles were going to release one more song, and now it’s here. And how is it? It’s not great, but that’s mostly because, well, the band’s already set a high standard for themselves. But […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/british-music-british-entertainment/the-beatles-release-now-and-then-their-final-song/">The Beatles release “Now and Then,” their final song</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/british-music-british-entertainment/the-beatles-release-now-and-then-their-final-song/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101245</post-id> </item>
<item>
<title>Ten Interesting Facts about Peter Cushing</title>
<link>https://anglotopia.net/british-entertainment/british-movies/ten-interesting-facts-about-peter-cushing/</link>
<comments>https://anglotopia.net/british-entertainment/british-movies/ten-interesting-facts-about-peter-cushing/#comments</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Wed, 01 Nov 2023 20:20:10 +0000</pubDate>
<category><![CDATA[British Movies]]></category>
<category><![CDATA[Entertainment]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=91557</guid>
<description><![CDATA[<img width="590" height="460" src="https://anglotopia.net/wp-content/uploads/2023/11/Revenge_of_Frankenstein_trailer_-_Peter_Cushing_cropped-590x460.png" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/Revenge_of_Frankenstein_trailer_-_Peter_Cushing_cropped-590x460.png 590w, https://anglotopia.net/wp-content/uploads/2023/11/Revenge_of_Frankenstein_trailer_-_Peter_Cushing_cropped-300x234.png 300w, https://anglotopia.net/wp-content/uploads/2023/11/Revenge_of_Frankenstein_trailer_-_Peter_Cushing_cropped-768x599.png 768w, https://anglotopia.net/wp-content/uploads/2023/11/Revenge_of_Frankenstein_trailer_-_Peter_Cushing_cropped-800x624.png 800w, https://anglotopia.net/wp-content/uploads/2023/11/Revenge_of_Frankenstein_trailer_-_Peter_Cushing_cropped.png 1292w" sizes="(max-width: 590px) 100vw, 590px" /><p>Perhaps one of the most underrated actors of the 20th Century, Peter Cushing is mostly regarded for his role as Grand Moff Tarkin in Star Wars: A New Hope. However, to horror fans, he is an absolute legend for playing Abraham Van Helsing and Victor Frankenstein in several Hammer Studios movies from the 1950s to […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/british-movies/ten-interesting-facts-about-peter-cushing/">Ten Interesting Facts about Peter Cushing</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/british-movies/ten-interesting-facts-about-peter-cushing/feed/</wfw:commentRss>
<slash:comments>1</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">91557</post-id> </item>
<item>
<title>The Fiver: Five Famous British Explorers</title>
<link>https://anglotopia.net/british-history/the-fiver-five-famous-british-explorers/</link>
<comments>https://anglotopia.net/british-history/the-fiver-five-famous-british-explorers/#comments</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Wed, 01 Nov 2023 20:11:48 +0000</pubDate>
<category><![CDATA[British History]]></category>
<category><![CDATA[Colonial America]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=92067</guid>
<description><![CDATA[<img width="590" height="402" src="https://anglotopia.net/wp-content/uploads/2017/04/1590_or_later_Marcus_Gheeraerts_Sir_Francis_Drake_Buckland_Abbey_Devon-590x402.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2017/04/1590_or_later_Marcus_Gheeraerts_Sir_Francis_Drake_Buckland_Abbey_Devon-590x402.jpg 590w, https://anglotopia.net/wp-content/uploads/2017/04/1590_or_later_Marcus_Gheeraerts_Sir_Francis_Drake_Buckland_Abbey_Devon-300x204.jpg 300w, https://anglotopia.net/wp-content/uploads/2017/04/1590_or_later_Marcus_Gheeraerts_Sir_Francis_Drake_Buckland_Abbey_Devon-768x523.jpg 768w, https://anglotopia.net/wp-content/uploads/2017/04/1590_or_later_Marcus_Gheeraerts_Sir_Francis_Drake_Buckland_Abbey_Devon.jpg 769w" sizes="(max-width: 590px) 100vw, 590px" /><p>Seeing the world can be a dangerous business—especially when it hasn’t been done before. Explorers from many countries and peoples have dared to take that first step beyond their known world to see what else is out there. Britain is no different in this regard, having begun to seek out new places along with most […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-history/the-fiver-five-famous-british-explorers/">The Fiver: Five Famous British Explorers</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-history/the-fiver-five-famous-british-explorers/feed/</wfw:commentRss>
<slash:comments>1</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">92067</post-id> </item>
<item>
<title>Buy One Union Jack Light, Get One For Fee For a Limited Time</title>
<link>https://anglotopia.net/anglophilia/anglophile-gear/buy-one-union-jack-light-get-one-for-fee-for-a-limited-time/</link>
<comments>https://anglotopia.net/anglophilia/anglophile-gear/buy-one-union-jack-light-get-one-for-fee-for-a-limited-time/#respond</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Wed, 01 Nov 2023 17:15:50 +0000</pubDate>
<category><![CDATA[Anglophile Alerts]]></category>
<category><![CDATA[Anglophile Deals]]></category>
<category><![CDATA[Anglophile Gear]]></category>
<category><![CDATA[Anglophilia]]></category>
<category><![CDATA[Featured]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101235</guid>
<description><![CDATA[<img width="590" height="393" src="https://anglotopia.net/wp-content/uploads/2023/11/1A0D2679-8C72-4793-8B8D-08B3FF1CC4BB_1_105_c-590x393.jpeg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/1A0D2679-8C72-4793-8B8D-08B3FF1CC4BB_1_105_c-590x393.jpeg 590w, https://anglotopia.net/wp-content/uploads/2023/11/1A0D2679-8C72-4793-8B8D-08B3FF1CC4BB_1_105_c-300x200.jpeg 300w, https://anglotopia.net/wp-content/uploads/2023/11/1A0D2679-8C72-4793-8B8D-08B3FF1CC4BB_1_105_c-768x512.jpeg 768w, https://anglotopia.net/wp-content/uploads/2023/11/1A0D2679-8C72-4793-8B8D-08B3FF1CC4BB_1_105_c-800x533.jpeg 800w, https://anglotopia.net/wp-content/uploads/2023/11/1A0D2679-8C72-4793-8B8D-08B3FF1CC4BB_1_105_c.jpeg 1086w" sizes="(max-width: 590px) 100vw, 590px" /><p>As the holidays approach, we have a special offer for Anglotopia followers. We still need to clear out our Union Jack Lights from our basement warehouse. They make a wonderful gift for the Anglophile in your life. So, this year, we’re offering a limited-time deal – buy one lightbox, get one free. No coupon is […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/anglophilia/anglophile-gear/buy-one-union-jack-light-get-one-for-fee-for-a-limited-time/">Buy One Union Jack Light, Get One For Fee For a Limited Time</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/anglophilia/anglophile-gear/buy-one-union-jack-light-get-one-for-fee-for-a-limited-time/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101235</post-id> </item>
<item>
<title>Great British Telly: A Brief History of Classic Doctor Who – 1963 to 1989</title>
<link>https://anglotopia.net/site-news/featured/great-british-telly-a-brief-history-of-classic-doctor-who-1963-to-1989/</link>
<comments>https://anglotopia.net/site-news/featured/great-british-telly-a-brief-history-of-classic-doctor-who-1963-to-1989/#respond</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Wed, 01 Nov 2023 16:20:15 +0000</pubDate>
<category><![CDATA[British TV]]></category>
<category><![CDATA[Doctor Who]]></category>
<category><![CDATA[Entertainment]]></category>
<category><![CDATA[Featured]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=97169</guid>
<description><![CDATA[<img width="590" height="332" src="https://anglotopia.net/wp-content/uploads/2023/11/Multi-doctor-hero-4b-590x332.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/11/Multi-doctor-hero-4b-590x332.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/11/Multi-doctor-hero-4b-300x169.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/11/Multi-doctor-hero-4b-768x432.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/11/Multi-doctor-hero-4b-1536x864.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/11/Multi-doctor-hero-4b-2048x1152.jpg 2048w, https://anglotopia.net/wp-content/uploads/2023/11/Multi-doctor-hero-4b-800x450.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/11/Multi-doctor-hero-4b-1320x743.jpg 1320w" sizes="(max-width: 590px) 100vw, 590px" /><p>Editor’s Note: This is the final article in the first ‘series’ of twelve articles about the history of Great British TV shows. We hope you’ve enjoyed reading them and learning about some icons of British TV. If you would like this series to continue, please subscribe to Anglotopia’s newsletter or leave a comment telling us […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/site-news/featured/great-british-telly-a-brief-history-of-classic-doctor-who-1963-to-1989/">Great British Telly: A Brief History of Classic Doctor Who – 1963 to 1989</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/site-news/featured/great-british-telly-a-brief-history-of-classic-doctor-who-1963-to-1989/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">97169</post-id> </item>
<item>
<title>Royal 101: The Honours Process from Nomination to Knighthood</title>
<link>https://anglotopia.net/royals/royal-101-the-honours-process-from-nomination-to-knighthood/</link>
<comments>https://anglotopia.net/royals/royal-101-the-honours-process-from-nomination-to-knighthood/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Fri, 27 Oct 2023 15:42:38 +0000</pubDate>
<category><![CDATA[Royal Explainers]]></category>
<category><![CDATA[Royals]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=92682</guid>
<description><![CDATA[<img width="466" height="310" src="https://anglotopia.net/wp-content/uploads/2017/08/patrick-stewart-knighted.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2017/08/patrick-stewart-knighted.jpg 466w, https://anglotopia.net/wp-content/uploads/2017/08/patrick-stewart-knighted-300x200.jpg 300w" sizes="(max-width: 466px) 100vw, 466px" /><p>It is a dream for many Brits to one day be called “Sir” or “Dame” when they receive a knighthood from the Sovereign. In the past, we have covered the various orders of chivalry that make up the honors but have not covered the process from beginning to end. Even the process can have many […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/royals/royal-101-the-honours-process-from-nomination-to-knighthood/">Royal 101: The Honours Process from Nomination to Knighthood</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/royals/royal-101-the-honours-process-from-nomination-to-knighthood/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">92682</post-id> </item>
<item>
<title>Win a Signed Copy of Country Life: 125 Years of Living in Great Britain</title>
<link>https://anglotopia.net/anglophilia/contests/win-a-signed-copy-of-country-life-125-years-of-living-in-great-britain/</link>
<comments>https://anglotopia.net/anglophilia/contests/win-a-signed-copy-of-country-life-125-years-of-living-in-great-britain/#respond</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Fri, 27 Oct 2023 15:16:46 +0000</pubDate>
<category><![CDATA[Brit Book Deals]]></category>
<category><![CDATA[British Heritage]]></category>
<category><![CDATA[British History]]></category>
<category><![CDATA[Contests]]></category>
<category><![CDATA[Featured]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101219</guid>
<description><![CDATA[<img width="590" height="590" src="https://anglotopia.net/wp-content/uploads/2023/10/91iRoRCJUDL._SL1500_-590x590.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/10/91iRoRCJUDL._SL1500_-590x590.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/10/91iRoRCJUDL._SL1500_-300x300.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/10/91iRoRCJUDL._SL1500_-150x150.jpg 150w, https://anglotopia.net/wp-content/uploads/2023/10/91iRoRCJUDL._SL1500_-768x768.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/10/91iRoRCJUDL._SL1500_-100x100.jpg 100w, https://anglotopia.net/wp-content/uploads/2023/10/91iRoRCJUDL._SL1500_-800x800.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/10/91iRoRCJUDL._SL1500_-1320x1320.jpg 1320w, https://anglotopia.net/wp-content/uploads/2023/10/91iRoRCJUDL._SL1500_.jpg 1500w" sizes="(max-width: 590px) 100vw, 590px" /><p>We have a new contest for Anglotopians. We recently attended a Royal Oak lecture featuring John Goodall, the co-author of a fabulous new coffee table book being put out by Rizzolo called: Country Life: 125 Years of Living in Great Britain from the Archives of Country Life. This massive book is almost 400 pages long […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/anglophilia/contests/win-a-signed-copy-of-country-life-125-years-of-living-in-great-britain/">Win a Signed Copy of Country Life: 125 Years of Living in Great Britain</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/anglophilia/contests/win-a-signed-copy-of-country-life-125-years-of-living-in-great-britain/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101219</post-id> </item>
<item>
<title>The Beatles announce the release of their final song</title>
<link>https://anglotopia.net/british-entertainment/british-music-british-entertainment/the-beatles-announce-the-release-of-their-final-song/</link>
<comments>https://anglotopia.net/british-entertainment/british-music-british-entertainment/the-beatles-announce-the-release-of-their-final-song/#respond</comments>
<dc:creator><![CDATA[Derek]]></dc:creator>
<pubDate>Thu, 26 Oct 2023 21:59:58 +0000</pubDate>
<category><![CDATA[Beatles]]></category>
<category><![CDATA[British Music]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101214</guid>
<description><![CDATA[<img width="590" height="332" src="https://anglotopia.net/wp-content/uploads/2021/12/one-anglophiles-take-on-the-beat-590x332.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2021/12/one-anglophiles-take-on-the-beat-590x332.jpg 590w, https://anglotopia.net/wp-content/uploads/2021/12/one-anglophiles-take-on-the-beat-300x169.jpg 300w, https://anglotopia.net/wp-content/uploads/2021/12/one-anglophiles-take-on-the-beat-768x432.jpg 768w, https://anglotopia.net/wp-content/uploads/2021/12/one-anglophiles-take-on-the-beat-800x450.jpg 800w, https://anglotopia.net/wp-content/uploads/2021/12/one-anglophiles-take-on-the-beat.jpg 1280w" sizes="(max-width: 590px) 100vw, 590px" /><p>In 1994, around the release of The Beatles Anthology, the surviving members of the Fab Four decided to get together and finish a few demos that John left behind. They planned to finish three, but they only finished two. They managed to complete “Free as a Bird” and “Real Love,” but one demo was just […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/british-music-british-entertainment/the-beatles-announce-the-release-of-their-final-song/">The Beatles announce the release of their final song</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/british-music-british-entertainment/the-beatles-announce-the-release-of-their-final-song/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101214</post-id> </item>
<item>
<title>Great British Telly: A History of Fawlty Towers</title>
<link>https://anglotopia.net/site-news/featured/great-british-telly-a-history-of-fawlty-towers/</link>
<comments>https://anglotopia.net/site-news/featured/great-british-telly-a-history-of-fawlty-towers/#respond</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Wed, 25 Oct 2023 18:53:17 +0000</pubDate>
<category><![CDATA[BBC]]></category>
<category><![CDATA[British TV]]></category>
<category><![CDATA[Entertainment]]></category>
<category><![CDATA[Featured]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=97167</guid>
<description><![CDATA[<img width="590" height="332" src="https://anglotopia.net/wp-content/uploads/2023/10/p078hvgw-590x332.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/10/p078hvgw-590x332.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/10/p078hvgw-300x169.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/10/p078hvgw-768x432.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/10/p078hvgw-1536x864.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/10/p078hvgw-800x450.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/10/p078hvgw-1320x743.jpg 1320w, https://anglotopia.net/wp-content/uploads/2023/10/p078hvgw.jpg 1920w" sizes="(max-width: 590px) 100vw, 590px" /><p>Ludicrous as he often appeared, creator John Cleese always claimed that his character Basil Fawlty, the lead character in Fawlty Towers, was an accurate, if exaggerated, depiction of a real person he had encountered managing a hotel. Embodying everyone’s fears of the ‘holiday from hell,’ viewers watched in rapt attention as one disaster after another […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/site-news/featured/great-british-telly-a-history-of-fawlty-towers/">Great British Telly: A History of Fawlty Towers</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/site-news/featured/great-british-telly-a-history-of-fawlty-towers/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">97167</post-id> </item>
<item>
<title>Unveiling the Mystery: 10 Most Allegedly Haunted Places in Britain</title>
<link>https://anglotopia.net/british-history/unveiling-the-mystery-10-most-allegedly-haunted-places-in-britain/</link>
<comments>https://anglotopia.net/british-history/unveiling-the-mystery-10-most-allegedly-haunted-places-in-britain/#comments</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Wed, 25 Oct 2023 18:43:18 +0000</pubDate>
<category><![CDATA[British Heritage]]></category>
<category><![CDATA[British History]]></category>
<category><![CDATA[Britishness]]></category>
<category><![CDATA[Travel]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101201</guid>
<description><![CDATA[<img width="590" height="443" src="https://anglotopia.net/wp-content/uploads/2023/10/IMG_0252-590x443.jpeg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/10/IMG_0252-590x443.jpeg 590w, https://anglotopia.net/wp-content/uploads/2023/10/IMG_0252-300x225.jpeg 300w, https://anglotopia.net/wp-content/uploads/2023/10/IMG_0252-768x576.jpeg 768w, https://anglotopia.net/wp-content/uploads/2023/10/IMG_0252-1536x1152.jpeg 1536w, https://anglotopia.net/wp-content/uploads/2023/10/IMG_0252-2048x1536.jpeg 2048w, https://anglotopia.net/wp-content/uploads/2023/10/IMG_0252-800x600.jpeg 800w, https://anglotopia.net/wp-content/uploads/2023/10/IMG_0252-1320x990.jpeg 1320w" sizes="(max-width: 590px) 100vw, 590px" /><p>Britain, with its rich history and ancient architecture, has long been shrouded in tales of the supernatural. From eerie castles to abandoned asylums, the land is dotted with allegedly haunted places that have captured the imagination of locals and tourists alike. In this post, we will embark on a chilling journey through the ten most […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-history/unveiling-the-mystery-10-most-allegedly-haunted-places-in-britain/">Unveiling the Mystery: 10 Most Allegedly Haunted Places in Britain</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-history/unveiling-the-mystery-10-most-allegedly-haunted-places-in-britain/feed/</wfw:commentRss>
<slash:comments>2</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101201</post-id> </item>
<item>
<title>The Fiver – Five British Things You Can Find in the United States</title>
<link>https://anglotopia.net/anglophilia/the-fiver-five-british-things-you-can-find-in-the-united-states/</link>
<comments>https://anglotopia.net/anglophilia/the-fiver-five-british-things-you-can-find-in-the-united-states/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Fri, 20 Oct 2023 14:15:59 +0000</pubDate>
<category><![CDATA[Anglophilia]]></category>
<category><![CDATA[British Events in the USA]]></category>
<category><![CDATA[British Heritage]]></category>
<category><![CDATA[British History]]></category>
<category><![CDATA[Travel]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=72420</guid>
<description><![CDATA[<img width="590" height="395" src="https://anglotopia.net/wp-content/uploads/2023/10/Depositphotos_469037114_XL-590x395.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/10/Depositphotos_469037114_XL-590x395.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/10/Depositphotos_469037114_XL-300x201.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/10/Depositphotos_469037114_XL-768x514.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/10/Depositphotos_469037114_XL-1536x1028.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/10/Depositphotos_469037114_XL-2048x1371.jpg 2048w, https://anglotopia.net/wp-content/uploads/2023/10/Depositphotos_469037114_XL-800x536.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/10/Depositphotos_469037114_XL-1320x884.jpg 1320w" sizes="(max-width: 590px) 100vw, 590px" /><p>While travel to the UK for pleasure might still be a ways off, there are plenty of things from Britain right here in the United States. By this, I’m not talking about the international foods aisle of your grocery store or your local pub, but places and items whose origins were across the pond before […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/anglophilia/the-fiver-five-british-things-you-can-find-in-the-united-states/">The Fiver – Five British Things You Can Find in the United States</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/anglophilia/the-fiver-five-british-things-you-can-find-in-the-united-states/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">72420</post-id> </item>
<item>
<title>A Brief History of British Political Cartoons</title>
<link>https://anglotopia.net/british-history/a-brief-history-of-british-political-cartoons/</link>
<comments>https://anglotopia.net/british-history/a-brief-history-of-british-political-cartoons/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Thu, 19 Oct 2023 15:22:58 +0000</pubDate>
<category><![CDATA[British History]]></category>
<category><![CDATA[Georgian Era]]></category>
<category><![CDATA[Humor]]></category>
<category><![CDATA[Victorian Era]]></category>
<guid isPermaLink="false">https://www.anglotopia.net/?p=62635</guid>
<description><![CDATA[<img width="590" height="421" src="https://anglotopia.net/wp-content/uploads/2023/10/an00079676_001_l_4-590x421.webp" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/10/an00079676_001_l_4-590x421.webp 590w, https://anglotopia.net/wp-content/uploads/2023/10/an00079676_001_l_4-300x214.webp 300w, https://anglotopia.net/wp-content/uploads/2023/10/an00079676_001_l_4.webp 728w" sizes="(max-width: 590px) 100vw, 590px" /><p>While using images to tell a story dates back to cave paintings and later on to the Greeks, Romans, Egyptians, and other cultures, political cartoons or comics as we know them are a tool of satire that’s only a few hundred years old. While the art of cartooning and caricature began in Renaissance Italy, historically, […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-history/a-brief-history-of-british-political-cartoons/">A Brief History of British Political Cartoons</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-history/a-brief-history-of-british-political-cartoons/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">62635</post-id> </item>
<item>
<title>Peter Gabriel announces “I/O” release date</title>
<link>https://anglotopia.net/british-entertainment/british-music-british-entertainment/peter-gabriel-announces-i-o-release-date/</link>
<comments>https://anglotopia.net/british-entertainment/british-music-british-entertainment/peter-gabriel-announces-i-o-release-date/#respond</comments>
<dc:creator><![CDATA[Derek]]></dc:creator>
<pubDate>Thu, 19 Oct 2023 15:04:27 +0000</pubDate>
<category><![CDATA[British Music]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101180</guid>
<description><![CDATA[<img width="590" height="332" src="https://anglotopia.net/wp-content/uploads/2016/01/sting-and-peter-gabriel-announce-590x332.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2016/01/sting-and-peter-gabriel-announce-590x332.jpg 590w, https://anglotopia.net/wp-content/uploads/2016/01/sting-and-peter-gabriel-announce-300x169.jpg 300w, https://anglotopia.net/wp-content/uploads/2016/01/sting-and-peter-gabriel-announce.jpg 1920w" sizes="(max-width: 590px) 100vw, 590px" /><p>In 2002, Peter Gabriel released Up, his seventh solo album. Shortly after that, he announced he had enough rejected ideas for songs to make up a whole new album. That album was to be called I/O and its release date was supposed to be sometime in 2004. But 2004 came and went with no I/O. […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/british-music-british-entertainment/peter-gabriel-announces-i-o-release-date/">Peter Gabriel announces “I/O” release date</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/british-music-british-entertainment/peter-gabriel-announces-i-o-release-date/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101180</post-id> </item>
<item>
<title>Great British Telly: A History of Blackadder – Where History Became a Hilarious Joke</title>
<link>https://anglotopia.net/site-news/featured/great-british-telly-a-history-of-blackadder-where-history-became-a-hilarious-joke/</link>
<comments>https://anglotopia.net/site-news/featured/great-british-telly-a-history-of-blackadder-where-history-became-a-hilarious-joke/#comments</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Wed, 18 Oct 2023 15:11:52 +0000</pubDate>
<category><![CDATA[BBC]]></category>
<category><![CDATA[British History]]></category>
<category><![CDATA[British TV]]></category>
<category><![CDATA[Featured]]></category>
<category><![CDATA[16]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=97176</guid>
<description><![CDATA[<img width="590" height="332" src="https://anglotopia.net/wp-content/uploads/2023/10/p07sqhv0-590x332.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/10/p07sqhv0-590x332.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/10/p07sqhv0-300x169.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/10/p07sqhv0-768x432.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/10/p07sqhv0-800x450.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/10/p07sqhv0.jpg 1200w" sizes="(max-width: 590px) 100vw, 590px" /><p>While many consider history a joke, it is rarely a source of television comedy. Blackadder stands out for taking history – or at least an alternative version of it – and creating outstanding humor. Starring Rowan Atkinson and Tony Robinson, the show follows one person and their eponymous descendants for 400 years, re-writing major historical […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/site-news/featured/great-british-telly-a-history-of-blackadder-where-history-became-a-hilarious-joke/">Great British Telly: A History of Blackadder – Where History Became a Hilarious Joke</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/site-news/featured/great-british-telly-a-history-of-blackadder-where-history-became-a-hilarious-joke/feed/</wfw:commentRss>
<slash:comments>2</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">97176</post-id> </item>
<item>
<title>Securing the Battlements: The Loss and Preservation of Historic Castles</title>
<link>https://anglotopia.net/british-history/securing-the-battlements-the-loss-and-preservation-of-historic-castles/</link>
<comments>https://anglotopia.net/british-history/securing-the-battlements-the-loss-and-preservation-of-historic-castles/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Tue, 17 Oct 2023 21:39:20 +0000</pubDate>
<category><![CDATA[British History]]></category>
<category><![CDATA[British Landscape]]></category>
<category><![CDATA[Medieval Era]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=93985</guid>
<description><![CDATA[<img width="590" height="393" src="https://anglotopia.net/wp-content/uploads/2023/10/9454B9F3-5E72-4744-B7C2-598C3300ABAA_1_105_c-590x393.jpeg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/10/9454B9F3-5E72-4744-B7C2-598C3300ABAA_1_105_c-590x393.jpeg 590w, https://anglotopia.net/wp-content/uploads/2023/10/9454B9F3-5E72-4744-B7C2-598C3300ABAA_1_105_c-300x200.jpeg 300w, https://anglotopia.net/wp-content/uploads/2023/10/9454B9F3-5E72-4744-B7C2-598C3300ABAA_1_105_c-768x512.jpeg 768w, https://anglotopia.net/wp-content/uploads/2023/10/9454B9F3-5E72-4744-B7C2-598C3300ABAA_1_105_c-800x533.jpeg 800w, https://anglotopia.net/wp-content/uploads/2023/10/9454B9F3-5E72-4744-B7C2-598C3300ABAA_1_105_c.jpeg 1086w" sizes="(max-width: 590px) 100vw, 590px" /><p>Once upon a time, many a castle stretched towards the heavens across the United Kingdom. Whether constructed for defense or to show off the wealth of the local lord, they were magnificent structures that represented the power of the nobility. However, over time, many of these castles have fallen into disrepair as they were abandoned […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-history/securing-the-battlements-the-loss-and-preservation-of-historic-castles/">Securing the Battlements: The Loss and Preservation of Historic Castles</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-history/securing-the-battlements-the-loss-and-preservation-of-historic-castles/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">93985</post-id> </item>
<item>
<title>Ten Interesting Facts about Sir Alec Guinness</title>
<link>https://anglotopia.net/british-entertainment/ten-interesting-facts-about-sir-alec-guinness/</link>
<comments>https://anglotopia.net/british-entertainment/ten-interesting-facts-about-sir-alec-guinness/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Mon, 16 Oct 2023 13:45:19 +0000</pubDate>
<category><![CDATA[British Movies]]></category>
<category><![CDATA[Celebrities]]></category>
<category><![CDATA[Entertainment]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=91015</guid>
<description><![CDATA[<img width="590" height="247" src="https://anglotopia.net/wp-content/uploads/2023/10/ht_alec_guinness_obi_wan_kenobi_star_wars_jc_160415_12x5_1600-590x247.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/10/ht_alec_guinness_obi_wan_kenobi_star_wars_jc_160415_12x5_1600-590x247.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/10/ht_alec_guinness_obi_wan_kenobi_star_wars_jc_160415_12x5_1600-300x125.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/10/ht_alec_guinness_obi_wan_kenobi_star_wars_jc_160415_12x5_1600-768x321.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/10/ht_alec_guinness_obi_wan_kenobi_star_wars_jc_160415_12x5_1600-1536x642.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/10/ht_alec_guinness_obi_wan_kenobi_star_wars_jc_160415_12x5_1600-800x335.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/10/ht_alec_guinness_obi_wan_kenobi_star_wars_jc_160415_12x5_1600-1320x552.jpg 1320w, https://anglotopia.net/wp-content/uploads/2023/10/ht_alec_guinness_obi_wan_kenobi_star_wars_jc_160415_12x5_1600.jpg 1600w" sizes="(max-width: 590px) 100vw, 590px" /><p>Con Man, Spymaster, and Jedi Sir Alec Guinness took on many unforgettable roles over his career as an actor. Guinness made a name for himself early in his acting career by starring in several Ealing Studios comedy films and showed what a dramatic powerhouse he could be in 1956’s The Bridge Over the River Kwai. […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/ten-interesting-facts-about-sir-alec-guinness/">Ten Interesting Facts about Sir Alec Guinness</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/ten-interesting-facts-about-sir-alec-guinness/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">91015</post-id> </item>
<item>
<title>Paul McCartney explains the origins of “Let it Be”</title>
<link>https://anglotopia.net/british-entertainment/british-music-british-entertainment/paul-mccartney-explains-the-origins-of-let-it-be/</link>
<comments>https://anglotopia.net/british-entertainment/british-music-british-entertainment/paul-mccartney-explains-the-origins-of-let-it-be/#respond</comments>
<dc:creator><![CDATA[Derek]]></dc:creator>
<pubDate>Mon, 16 Oct 2023 12:09:08 +0000</pubDate>
<category><![CDATA[Beatles]]></category>
<category><![CDATA[British Music]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101157</guid>
<description><![CDATA[<img width="590" height="332" src="https://anglotopia.net/wp-content/uploads/2019/07/paul-mccartney-announces-hes-bee-590x332.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2019/07/paul-mccartney-announces-hes-bee-590x332.jpg 590w, https://anglotopia.net/wp-content/uploads/2019/07/paul-mccartney-announces-hes-bee-300x169.jpg 300w, https://anglotopia.net/wp-content/uploads/2019/07/paul-mccartney-announces-hes-bee-768x432.jpg 768w, https://anglotopia.net/wp-content/uploads/2019/07/paul-mccartney-announces-hes-bee.jpg 1280w, https://anglotopia.net/wp-content/uploads/2019/07/paul-mccartney-announces-hes-bee-800x450.jpg 800w" sizes="(max-width: 590px) 100vw, 590px" /><p>In a recent episode of Paul McCartney: A Life in Lyrics, Macca talked about the origins of one of the band’s last big hits. One would think there wouldn’t be much left to talk about the Get Back sessions after the documentary. Turns out there is, but it’s worth noting that the story of “Let […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/british-music-british-entertainment/paul-mccartney-explains-the-origins-of-let-it-be/">Paul McCartney explains the origins of “Let it Be”</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/british-music-british-entertainment/paul-mccartney-explains-the-origins-of-let-it-be/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101157</post-id> </item>
<item>
<title>FINAL DAY TO ENTER! Win a Copy of Her Majesty: A Photographic History 1926–2022</title>
<link>https://anglotopia.net/anglophilia/anglophile-alert/final-day-to-enter-win-a-copy-of-her-majesty-a-photographic-history-1926-2022/</link>
<comments>https://anglotopia.net/anglophilia/anglophile-alert/final-day-to-enter-win-a-copy-of-her-majesty-a-photographic-history-1926-2022/#respond</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Fri, 13 Oct 2023 20:22:29 +0000</pubDate>
<category><![CDATA[Anglophile Alerts]]></category>
<category><![CDATA[Brit Book Deals]]></category>
<category><![CDATA[Contests]]></category>
<category><![CDATA[Featured]]></category>
<category><![CDATA[Queen Elizabeth]]></category>
<category><![CDATA[Royals]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=101155</guid>
<description><![CDATA[<img width="450" height="590" src="https://anglotopia.net/wp-content/uploads/2023/10/6f4ca7148b3bb6668175e8e26ff228d1-450x590.webp" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/10/6f4ca7148b3bb6668175e8e26ff228d1-450x590.webp 450w, https://anglotopia.net/wp-content/uploads/2023/10/6f4ca7148b3bb6668175e8e26ff228d1-229x300.webp 229w, https://anglotopia.net/wp-content/uploads/2023/10/6f4ca7148b3bb6668175e8e26ff228d1-768x1008.webp 768w, https://anglotopia.net/wp-content/uploads/2023/10/6f4ca7148b3bb6668175e8e26ff228d1-1171x1536.webp 1171w, https://anglotopia.net/wp-content/uploads/2023/10/6f4ca7148b3bb6668175e8e26ff228d1-1561x2048.webp 1561w, https://anglotopia.net/wp-content/uploads/2023/10/6f4ca7148b3bb6668175e8e26ff228d1-800x1050.webp 800w, https://anglotopia.net/wp-content/uploads/2023/10/6f4ca7148b3bb6668175e8e26ff228d1-1320x1732.webp 1320w, https://anglotopia.net/wp-content/uploads/2023/10/6f4ca7148b3bb6668175e8e26ff228d1-scaled.webp 1951w" sizes="(max-width: 450px) 100vw, 450px" /><p>Today is the last day to enter! It’s been quite a while since we did a contest, so it’s time to do one! We have one copy of Her Majesty. A Photographic History 1926–2022 to giveaway. This is a massive photographic book put out by art publisher Taschen, and is a beautiful tribute to HM […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/anglophilia/anglophile-alert/final-day-to-enter-win-a-copy-of-her-majesty-a-photographic-history-1926-2022/">FINAL DAY TO ENTER! Win a Copy of Her Majesty: A Photographic History 1926–2022</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/anglophilia/anglophile-alert/final-day-to-enter-win-a-copy-of-her-majesty-a-photographic-history-1926-2022/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">101155</post-id> </item>
<item>
<title>Great British Telly: A History of the Classic All Creatures Great and Small</title>
<link>https://anglotopia.net/british-entertainment/brit-tv/great-british-telly-a-history-of-the-classic-all-creatures-great-and-small/</link>
<comments>https://anglotopia.net/british-entertainment/brit-tv/great-british-telly-a-history-of-the-classic-all-creatures-great-and-small/#comments</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Wed, 11 Oct 2023 14:07:13 +0000</pubDate>
<category><![CDATA[BBC]]></category>
<category><![CDATA[British TV]]></category>
<category><![CDATA[Featured]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=97178</guid>
<description><![CDATA[<img width="590" height="332" src="https://anglotopia.net/wp-content/uploads/2023/10/294542871c6763756_medium-590x332.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/10/294542871c6763756_medium-590x332.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/10/294542871c6763756_medium-300x169.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/10/294542871c6763756_medium-768x432.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/10/294542871c6763756_medium-1536x864.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/10/294542871c6763756_medium-800x450.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/10/294542871c6763756_medium-1320x743.jpg 1320w, https://anglotopia.net/wp-content/uploads/2023/10/294542871c6763756_medium.jpg 1920w" sizes="(max-width: 590px) 100vw, 590px" /><p>Television shows about doctors are many, and they come and go in waves of popularity. But doctors are not the only ones who care for living creatures, so a show about a veterinarian doesn’t seem too much of a leap – yet such shows are rare. All Creatures Great and Small filled that niche, setting […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-entertainment/brit-tv/great-british-telly-a-history-of-the-classic-all-creatures-great-and-small/">Great British Telly: A History of the Classic All Creatures Great and Small</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-entertainment/brit-tv/great-british-telly-a-history-of-the-classic-all-creatures-great-and-small/feed/</wfw:commentRss>
<slash:comments>2</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">97178</post-id> </item>
<item>
<title>Brit History: Ten Most Important British Events of the 1990s – The Cool Britannia Years</title>
<link>https://anglotopia.net/british-history/modern-britain/brit-history-ten-most-important-british-events-of-the-1990s-the-cool-britannia-years/</link>
<comments>https://anglotopia.net/british-history/modern-britain/brit-history-ten-most-important-british-events-of-the-1990s-the-cool-britannia-years/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Tue, 10 Oct 2023 20:54:23 +0000</pubDate>
<category><![CDATA[Modern Britain]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=72250</guid>
<description><![CDATA[<img width="590" height="395" src="https://anglotopia.net/wp-content/uploads/2023/10/Francois_Mitterrand__Elizabeth_II_-_Eurotunnel_-_1994-590x395.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2023/10/Francois_Mitterrand__Elizabeth_II_-_Eurotunnel_-_1994-590x395.jpg 590w, https://anglotopia.net/wp-content/uploads/2023/10/Francois_Mitterrand__Elizabeth_II_-_Eurotunnel_-_1994-300x201.jpg 300w, https://anglotopia.net/wp-content/uploads/2023/10/Francois_Mitterrand__Elizabeth_II_-_Eurotunnel_-_1994-768x514.jpg 768w, https://anglotopia.net/wp-content/uploads/2023/10/Francois_Mitterrand__Elizabeth_II_-_Eurotunnel_-_1994-1536x1027.jpg 1536w, https://anglotopia.net/wp-content/uploads/2023/10/Francois_Mitterrand__Elizabeth_II_-_Eurotunnel_-_1994-2048x1370.jpg 2048w, https://anglotopia.net/wp-content/uploads/2023/10/Francois_Mitterrand__Elizabeth_II_-_Eurotunnel_-_1994-800x535.jpg 800w, https://anglotopia.net/wp-content/uploads/2023/10/Francois_Mitterrand__Elizabeth_II_-_Eurotunnel_-_1994-1320x883.jpg 1320w" sizes="(max-width: 590px) 100vw, 590px" /><p>The 1990s were a time of “new” in Britain. New conflicts, new travel options, new government, a new peace, and even a new millennium helped mark the years from 1991 to 2000. For many, the 90s were certainly a golden time for Britain at home and abroad, and the changes helped bring a better quality […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-history/modern-britain/brit-history-ten-most-important-british-events-of-the-1990s-the-cool-britannia-years/">Brit History: Ten Most Important British Events of the 1990s – The Cool Britannia Years</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-history/modern-britain/brit-history-ten-most-important-british-events-of-the-1990s-the-cool-britannia-years/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">72250</post-id> </item>
<item>
<title>The Fiver: Five British Halloween Costume Ideas</title>
<link>https://anglotopia.net/british-identity/the-fiver-five-british-halloween-costume-ideas/</link>
<comments>https://anglotopia.net/british-identity/the-fiver-five-british-halloween-costume-ideas/#respond</comments>
<dc:creator><![CDATA[John Rabon]]></dc:creator>
<pubDate>Mon, 09 Oct 2023 19:27:14 +0000</pubDate>
<category><![CDATA[Britishness]]></category>
<category><![CDATA[The Fiver]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=78622</guid>
<description><![CDATA[<img width="590" height="332" src="https://anglotopia.net/wp-content/uploads/2021/10/Apple-TV-sports-comedy-ted-lasso-poster-artwork-landscape-001-590x332.jpg" class="webfeedsFeaturedVisual wp-post-image" alt="" decoding="async" loading="lazy" style="display: block; margin: auto; margin-bottom: 10px; max-width: 100%;" srcset="https://anglotopia.net/wp-content/uploads/2021/10/Apple-TV-sports-comedy-ted-lasso-poster-artwork-landscape-001-590x332.jpg 590w, https://anglotopia.net/wp-content/uploads/2021/10/Apple-TV-sports-comedy-ted-lasso-poster-artwork-landscape-001-300x169.jpg 300w, https://anglotopia.net/wp-content/uploads/2021/10/Apple-TV-sports-comedy-ted-lasso-poster-artwork-landscape-001-768x432.jpg 768w, https://anglotopia.net/wp-content/uploads/2021/10/Apple-TV-sports-comedy-ted-lasso-poster-artwork-landscape-001-1536x864.jpg 1536w, https://anglotopia.net/wp-content/uploads/2021/10/Apple-TV-sports-comedy-ted-lasso-poster-artwork-landscape-001-800x450.jpg 800w, https://anglotopia.net/wp-content/uploads/2021/10/Apple-TV-sports-comedy-ted-lasso-poster-artwork-landscape-001-1320x743.jpg 1320w, https://anglotopia.net/wp-content/uploads/2021/10/Apple-TV-sports-comedy-ted-lasso-poster-artwork-landscape-001.jpg 2048w" sizes="(max-width: 590px) 100vw, 590px" /><p>It’s spooky time again, and this time, we can actually go out and about to celebrate. Of course, the best thing about Halloween is getting to dress up for parties, pub crawls, or receiving trick-or-treaters at the door. As usual, we like to think about the fancy dress possibilities and offer up some suggestions if […]</p>
<p>The post <a rel="nofollow" href="https://anglotopia.net/british-identity/the-fiver-five-british-halloween-costume-ideas/">The Fiver: Five British Halloween Costume Ideas</a> appeared first on <a rel="nofollow" href="https://anglotopia.net">Anglotopia.net</a>.</p>
]]></description>
<wfw:commentRss>https://anglotopia.net/british-identity/the-fiver-five-british-halloween-costume-ideas/feed/</wfw:commentRss>
<slash:comments>0</slash:comments>
<post-id xmlns="com-wordpress:feed-additions:1">78622</post-id> </item>
<item>
<title>Where to Follow Anglotopia on Social Media Other Than Twitter</title>
<link>https://anglotopia.net/site-news/anglotopia-news/where-to-follow-anglotopia-on-social-media-other-than-twitter/</link>
<comments>https://anglotopia.net/site-news/anglotopia-news/where-to-follow-anglotopia-on-social-media-other-than-twitter/#respond</comments>
<dc:creator><![CDATA[Jonathan]]></dc:creator>
<pubDate>Mon, 09 Oct 2023 14:27:42 +0000</pubDate>
<category><![CDATA[Anglotopia News]]></category>
<guid isPermaLink="false">https://anglotopia.net/?p=97508</guid>