-
Notifications
You must be signed in to change notification settings - Fork 0
/
albumPageExample.html
2589 lines (2586 loc) · 228 KB
/
albumPageExample.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en-US">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>Taylor Swift - folklore - Reviews - Album of The Year</title>
<META NAME="Description" CONTENT="Music Reviews: folklore by Taylor Swift released in 2020 via Republic. Genre: Singer-Songwriter." />
<meta name="keywords" content="Taylor Swift,folklore,album,reviews,ratings" />
<meta property="og:site_name" content="Album of The Year" />
<meta property="og:type" content="article" />
<meta property="og:title" content="Taylor Swift - folklore" />
<meta property="og:image" content="https://cdn.albumoftheyear.org/album/264058-folklore-1.jpg" />
<meta property="og:url" content="https://www.albumoftheyear.org/album/264058-taylor-swift-folklore.php" />
<meta property="og:description" content="Music Reviews: folklore by Taylor Swift released in 2020 via Republic. Genre: Singer-Songwriter." />
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@aoty">
<meta name="twitter:url" content="https://www.albumoftheyear.org/album/264058-taylor-swift-folklore.php">
<meta name="twitter:title" content="Taylor Swift - folklore">
<meta name="twitter:description" content="Music Reviews: folklore by Taylor Swift released in 2020 via Republic. Genre: Singer-Songwriter.">
<meta name="twitter:image" content="http://cdn.albumoftheyear.org/album/264058-folklore-1.jpg">
<link rel="image_src" href="https://cdn.albumoftheyear.org/album/264058-folklore-1.jpg" />
<link href="https://plus.google.com/117128855637035091905" rel="publisher" />
<meta property="fb:app_id" content="387133090556" />
<link rel="canonical" href="https://www.albumoftheyear.org/album/264058-taylor-swift-folklore.php" />
<link rel="preconnect" href="https://www.google-analytics.com">
<link rel="preconnect" href="https://www.googletagmanager.com">
<link rel="stylesheet" type="text/css" href="/style20200803.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700|Roboto:400,400i,700" rel="stylesheet">
<script src="https://kit.fontawesome.com/3950518633.js" crossorigin="anonymous"></script>
<link rel="shortcut icon" href="/images/favicon.png" type="image/x-icon">
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-TPD5DD');
</script>
</head>
<body id="graybg">
<span itemscope itemtype="http://schema.org/MusicAlbum">
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id=GTM-TPD5DD"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<div id="header" class="header">
<div id="content">
<div class="logoHead"><a class="siteLogo" href="/"></a></div>
<div class="mobileProfile">
<a href="#" onclick="toggle_visibility('userLinks'); return false;"><img src="https://cdn.albumoftheyear.org/user/thumbs/luar_1594203234.jpg" alt="Luar" /></a>
<div id="userLinks" class="userLinks">
<div><a href="/user/luar/"><i class="fas fa-user-circle"></i>Profile</a></div>
<div><a href="/feed/"><i class="fas fa-rss-square"></i>Feed</a></div>
<div><a href="/notifications/"><i class="fas fa-bell"></i>Notifications</a></div>
<div><a href="/user/luar/library/"><i class="fas fa-books"></i>Library</a></div>
<div><a href="/user/luar/lists/"><i class="far fa-list-ul"></i>Lists</a></div>
<div><a href="/add-album.php"><i class="fas fa-plus-square"></i>Add Album</a></div>
<div><a href="/account/edit.php"><i class="fas fa-cog"></i>Settings</a></div>
<div><a href="/account/?l=logout"><i class="fas fa-sign-out-alt"></i>Sign Out</a></div>
</div>
</div>
<div id="mobileNav" class="navButton"><a href="#" onclick="toggle_visibility('searchContainer', 'nav'); changeClass(); return false;"><i class="fas fa-bars"></i></a></div>
<div class="searchContainer" id="searchContainer">
<form id="search" action="/search/">
<input type="text" class="searchBox" name="q" id="searchT" autocomplete="off" placeholder="Search albums, artists, genres etc." />
<span class="searchImage"><a href="#" onclick="document.getElementById('search').submit()" rel="nofollow"><i class="far fa-search" style="vertical-align: middle;"></i></a></span>
</form>
</div>
<div id="searchSuggestions"></div>
<a href="http://www.facebook.com/albumoftheyear" target="_blank" rel="nofollow">
<div class="facebookHead"><i class="fab fa-facebook-square"></i></div>
</a>
<a href="http://www.twitter.com/aoty" target="_blank" rel="nofollow">
<div class="twitterHead"><i class="fab fa-twitter-square"></i></div>
</a>
<a href="https://www.instagram.com/_a_o_t_y/" target="_blank" rel="nofollow">
<div class="instagramHead"><i class="fab fa-instagram-square"></i></div>
</a>
<div class="clear"></div>
</div>
</div>
<div class="nav" id="nav">
<div id="content">
<div class="navBlock"><a href="/ratings/6-highest-rated/2020/1">Best Albums</a></div>
<div class="navBlock"><a href="/discover/">Discover</a></div>
<div class="navBlock"><a href="/releases/">New Releases</a></div>
<div class="navBlock"><a href="/lists.php">Lists</a></div>
<div class="navBlock noTablet"><a href="/genre.php">Genres</a></div>
<div class="navBlock noTablet"><a href="/l/newsworthy/">News</a></div>
<div class="navBlock noTablet"><a href="/users/">Community</a></div>
<div class="navBlock profile">
<div class="profilePic"><a class="profileDropDown" onclick="toggle_visibility('accountLinks'); return false;"><img src="https://cdn.albumoftheyear.org/user/thumbs/luar_1594203234.jpg" alt="Luar" /></a></div>
<div class="userName">
<a class="profileDropDown" onclick="toggle_visibility('accountLinks'); return false;">Luar</a>
<div class="donor userReview"><a href="/donate/"><i class="fas fa-check-circle"></i></a></div>
</div>
<div id="accountLinks" class="accountLinks">
<div><a href="/user/luar/"><i class="fas fa-user-circle"></i>Profile</a></div>
<div><a href="/feed/"><i class="fas fa-rss-square"></i>Feed</a></div>
<div><a href="/notifications/"><i class="fas fa-bell"></i>Notifications</a></div>
<div><a href="/user/luar/library/"><i class="fas fa-books"></i>Library</a></div>
<div><a href="/user/luar/lists/"><i class="far fa-list-ul"></i>Lists</a></div>
<div><a href="/add-album.php"><i class="fas fa-plus-square"></i>Add Album</a></div>
<div><a href="/account/edit.php"><i class="fas fa-cog"></i>Settings</a></div>
<div><a href="/account/?l=logout"><i class="fas fa-sign-out-alt"></i>Sign Out</a></div>
</div>
</div>
<div class="navSocialMobile">
<a href="https://www.facebook.com/albumoftheyear" target="_blank" rel="nofollow"><i class="fab fa-facebook-square"></i></a>
<a href="https://www.twitter.com/aoty" target="_blank" rel="nofollow"><i class="fab fa-twitter-square"></i></a>
<a href="https://www.instagram.com/_a_o_t_y/" target="_blank" rel="nofollow"><i class="fab fa-instagram"></i></a>
<a href="https://open.spotify.com/user/aoty" target="_blank" rel="nofollow"><i class="fab fa-spotify"></i></a>
</div>
</div>
</div>
<div class="adSpacer"></div>
<div id="centerContent">
<div class="fullWidth">
<div class="selectRow">
<div class="selectBox selected">Overview</div>
<a href="/album/264058-taylor-swift-folklore/user-reviews/">
<div class="selectBox">User Reviews</div>
</a>
<a href="/album/264058-taylor-swift-folklore/comments/">
<div class="selectBox">Comments (243)</div>
</a>
<a href="/artist/323-taylor-swift/">
<div class="selectBox">Discography</div>
</a>
</div>
<div class="albumHeadline">
<h1>
<div class="artist"><span itemprop="byArtist" itemscope itemtype="http://schema.org/MusicGroup"><a href="/artist/323-taylor-swift/" itemprop="url"><span itemprop="name">Taylor Swift</span></a></span></div>
<div class="albumTitle"><span itemprop="name">folklore</span></div>
</h1>
<div class="mustHearButton"><a href="/must-hear/"><span><i class="fas fa-star"></i> Must Hear Album</span></a></div>
</div>
<div class="albumTopBox cover">
<picture>
<source media="(min-width: 0px) and (max-width: 480px)" srcset="https://cdn2.albumoftheyear.org/250x/album/264058-folklore-1.jpg 1x, https://cdn2.albumoftheyear.org/500x/album/264058-folklore-1.jpg 2x">
<source media="(min-width: 481px)" srcset="https://cdn2.albumoftheyear.org/345x/album/264058-folklore-1.jpg 1x, https://cdn2.albumoftheyear.org/690x/album/264058-folklore-1.jpg 2x">
<img src="https://cdn.albumoftheyear.org/album/264058-folklore-1.jpg" alt="Taylor Swift - folklore" itemprop="image" />
</picture>
</div>
<div class="albumTopBox">
<div class="albumCriticScoreBox">
<div class="heading">Critic Score</div>
<span itemprop="aggregateRating" itemscope itemtype="http://schema.org/AggregateRating">
<div class="albumCriticScore">
<span itemprop="ratingValue"><a href="#critics">86</a></span>
<meta itemprop="worstRating" content="1">
<meta itemprop="bestRating" content="100">
<div class="ratingBar green">
<div class="green" style="width:86%;"></div>
</div>
</div>
<div class="text numReviews">Based on <strong><span itemprop="reviewCount">31</span></strong> reviews</div>
</span>
<div class="text gray">2020 Ratings: <strong><a href="/ratings/6-highest-rated/2020/1">#11</a></strong> / 487</div>
<div class="clear"></div>
</div>
<div class="albumUserScoreBox">
<div class="heading">User Score</div>
<div class="albumUserScore">
<a href="#users">77</a>
<div class="ratingBar green">
<div class="green" style="width:77%;"></div>
</div>
</div>
<div class="text numReviews">Based on <a href="/album/264058-taylor-swift-folklore/user-reviews/?type=ratings"><strong>1,399</strong> ratings</a></div>
<div class="text gray">2020 Ratings: <strong><a href="/ratings/user-highest-rated/2020/">#29</a></strong></div>
<div class="text">Liked by <a href="/album/264058-taylor-swift-folklore/likes/"><strong>295</strong> people</a></div>
<div class="clear"></div>
</div>
</div>
<div class="albumTopBox info">
<div class="sectionHeading">
<h2>Details</h2>
<div class="viewAll"><a href="/album/corrections.php?id=264058" rel="nofollow">Submit Correction</a></div>
</div>
<div class="detailRow"><a href="/2020/releases/july-07.php">July</a> 24, <a href="/2020/releases/"> 2020</a> <span>/ Release Date</span></div>
<div class="detailRow">LP <span>/ Format</span></div>
<div class="detailRow">Republic <span>/ Label</span></div>
<div class="detailRow"><a href="/genre/37-singer-songwriter/2020/" itemprop="genre">Singer-Songwriter</a>, <a href="/genre/247-folk-pop/2020/" itemprop="genre">Folk Pop</a> <span>/ Genres <span id="showGenre"><a class="showGenreSuggest" href="#"><i class="far fa-plus-circle" style="vertical-align: middle;"></i></a></span>
<span id="hideGenre"><a class="hideGenreSuggest" href="#"><i class="far fa-minus-circle" style="vertical-align: middle;"></i></a></span></span>
</div>
<div class="addGenre" id="addGenre">
<div class="heading">Suggest a Genre</div>
<input type="text" id="genre" maxlength="35" class="genreTextBox"></input>
<a class="addAlbumGenre" id="264058" href="#">
<div id="add" class="smallButton">Add</div>
</a>
<div id="adding" class="smallButton" style="display:none;">Adding</div>
<div id="genreMessage">Abuse of this feature may prevent future contributions from your account.</div>
</div>
<div class="detailRow"><a href="http://taylorswift.com" target="_blank">taylorswift.com</a> <span> / Website</span></div>
<div class="detailRow"><span>Tags</span></div>
<div class="tag strong"><a href="/tag/folk pop/albums/">folk pop</a></div>
<div class="tag strong"><a href="/tag/indie folk/albums/">indie folk</a></div>
<div class="tag strong"><a href="/tag/singer-songwriter/albums/">singer-songwriter</a></div>
<div class="tag strong"><a href="/tag/art pop/albums/">art pop</a></div>
<div class="tag strong"><a href="/tag/folk/albums/">folk</a></div>
<div class="tag add"><a class="moreTags" data-album-id="264058" href="#"><i class="far fa-plus"></i> More</a></div>
<div class="tag add"><a class="showAddTag" href="#"><i class="fas fa-tag"></i> Add Tag</a></div>
<div id="addTag" style="display:none;">
<input type="text" id="tag" maxlength="35" class="tagTextBox"></input>
<a class="addAlbumTag" id="264058" href="#">
<div id="add" class="smallButton">Add</div>
</a>
<div id="adding" class="smallButton" style="display:none;">Adding</div>
<div id="tagMessage" style="font-size:11px;"></div>
<div style="margin:8px 0 5px 0;"><span style="font-size:11px; font-weight:bold;">YOUR TAGS</span></div>
<div class="tag" id="tag26326"><span><a href="/user/luar/tag/woman/">woman</a></span></div>
<a class="deleteAlbumTag" id="26326" href="#"><img id="delete26326" src="https://cdn.albumoftheyear.org/images/delete.png" /></a><span id="deleteCheck26326" style="display:none; font-size:11px;"> <span style="color:red;">Delete?</span> <a class="deleteAlbumTagYes" id="26326" albumID="264058" href="#">Yes</a> / <a class="deleteAlbumTagNo" id="26326" href="#">No</a></span><br />
<div class="tag" id="tag25126"><span><a href="/user/luar/tag/2020s/">2020s</a></span></div>
<a class="deleteAlbumTag" id="25126" href="#"><img id="delete25126" src="https://cdn.albumoftheyear.org/images/delete.png" /></a><span id="deleteCheck25126" style="display:none; font-size:11px;"> <span style="color:red;">Delete?</span> <a class="deleteAlbumTagYes" id="25126" albumID="264058" href="#">Yes</a> / <a class="deleteAlbumTagNo" id="25126" href="#">No</a></span><br />
</div>
</div>
</div>
<div class="flexContainer">
<div class="wideLeft alignTop">
<div class="thirdPartyLinks" style="vertical-align: middle;">
<div class="socialButtons">
<a class="socialShare" href="https://www.facebook.com/dialog/share?app_id=387133090556&display=popup&href=https%3A%2F%2Fwww.albumoftheyear.org%2Falbum%2F264058-taylor-swift-folklore.php&redirect_uri=https%3A%2F%2Ffacebook.com" target="_blank">
<div class="fbShare"><img src="https://cdn.albumoftheyear.org/images/fbShare-color.png" /></div>
</a>
<a class="socialShare" href="https://twitter.com/intent/tweet?text=Taylor+Swift+-+folklore // Reviews&url=https%3A%2F%2Fwww.albumoftheyear.org%2Falbum%2F264058-taylor-swift-folklore.php&via=aoty" target="_blank">
<div class="twitterShare"><img src="https://cdn.albumoftheyear.org/images/twitterShare-color.png" /></div>
</a>
</div>
<div class="buyButtons">
<a href="http://www.amazon.com/gp/redirect.html?ie=UTF8&location=http%3A%2F%2Fwww.amazon.com%2Fs%3Fie%3DUTF8%26x%3D0%26ref_%3Dnb%5Fsb%5Fnoss%26y%3D0%26field-keywords%3Dtaylor%20swift%20folklore%26url%3Dsearch-alias%253Daps&tag=albumoftheyear-20&linkCode=ur2&camp=1789&creative=390957" rel="nofollow" target="_blank" title="Amazon">
<div class="albumButton amazon"><i class="fab fa-amazon"></i></div>
</a>
<a href="https://music.apple.com/us/album/folklore/1524801260?uo=4&at=10l4PB&ct=album&app=itunes" rel="nofollow" target="blank" title="iTunes">
<div class="albumButton iTunes"><i class="fab fa-itunes-note"></i></div>
</a>
<a href="https://music.apple.com/us/album/folklore/1524801260?uo=4&at=10l4PB&ct=albumAM" rel="nofollow" target="blank" title="Apple Music">
<div class="albumButton appleMusic"><i class="fab fa-apple"></i></div>
</a>
<a href="http://open.spotify.com/album/0xS0iOtxQRoJvfcFcJA5Gv" rel="nofollow" target="blank" title="Spotify">
<div class="albumButton spotify"><i class="fab fa-spotify"></i></div>
</a>
</div>
<div class="clear"></div>
</div>
<div class="yourRatingContainer">
<div class="content">
<div style="float:right;">
<span id="addSpinList" style="display:none;">
<a class="addSpinList" id="264058" href="#" title="Save to Library">
<div class="spinList">Save</div>
</a>
</span>
<span id="removeSpinList">
<a class="removeSpinList" id="264058" href="#">
<div class="inSpinList"><span class="text1">Saved</span><span class="text2">Remove</span></div>
</a>
</span>
<span id="likeAlbumContainer_264058">
<a href="#" class="addAlbumLike" data-album-id="264058">
<div class="likeAlbum">Like</div>
</a>
</span>
<span id="unlikeAlbumContainer_264058" style="display: none;">
<a href="#" class="removeAlbumLike" data-album-id="264058">
<div class="likeAlbum liked"><span class="text1">Liked</span><span class="text2">Remove</span></div>
</a>
</span>
<a href="#" class="addToListPop" data-album-id="264058">
<div class="addToList">Add to</div>
</a>
</div>
<div class="userReviewImage"><a href="/user/luar/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn.albumoftheyear.org/user/thumbs/luar_1594203234.jpg" alt="Luar" /></a></div>
<div class="userReviewName"><a href="/user/luar/">Luar</a></div>
<div class="ratingTextBoxContainer">
<div style="float:left;">
<div id="ratingBlock" style="display:inline-block;">
<input type="text" pattern="\d*" id="value" class="ratingTextBox" onfocus="if (this.value==this.defaultValue) this.value='';" maxlength="3" placeholder="0-100" />
<a class="insertRating" id="264058" href="#">
<div id="rate" class="smallButton">Rate</div>
</a>
<div id="rating" class="smallButton" style="display:none;">Rating</div>
</div>
</div>
<div class="clear"></div>
</div>
<div id="reviewBlock" class="userReviewTextBoxContiner">
<form id="review-form" name="review-form" method="post"><textarea id="text" class="reviewTextBox" name="userBlurb" maxlength="65400" placeholder="Add a Review"></textarea></form>
</div>
<div class="userReviewTextBoxMessage">
<div class="guidelinesLink" id="guidelines"><a href="#" class="guidePop">Review Guidelines</a></div>
<span id="postReviewButton"><a class="insertReview" id="264058" href="#"><span id="post" class="smallButton">Post</span></a><span id="posting" class="smallButton" style="display: none;">Posting</span></span>
<div class="clear"></div>
</div>
<div class="notificationArea" id="notificationArea">
<span id="notificationMessage"></span>
<div id="deleteRatingCheck" style="display:none;">
Are you sure you want to delete your rating?
<div>
<a class="deleteRatingYes" href="#" id="264058">
<div class="smallButton">Yes</div>
</a>
<a class="deleteRatingNo" href="#">
<div class="smallButton">No</div>
</a>
</div>
</div>
<div id="deleteReviewCheck" style="display:none;">
Are you sure you want to delete your review?
<div>
<a class="deleteReviewYes" href="#" id="264058">
<div class="smallButton">Yes</div>
</a>
<a class="deleteReviewNo" href="#">
<div class="smallButton">No</div>
</a>
</div>
</div>
</div>
</div>
</div>
<div id="critics" class="section">
<div class="sectionHeading">
<i class="fas fa-newspaper"></i>
<h2>CRITIC REVIEWS</h2>
<div class="viewAll"><a href="/add-rating.php?id=264058" rel="nofollow">Add Critic Rating</a></div>
</div>
<div id="criticReviewContainer">
<div class="menuDropFloatRight">
<div class="menuDropText">Sort</div>
<ul class="menuDrop">
<li id="sort" class="menuDropSelected">
<div class="menuDropSelectedText">Highest Rated</div>
<ul id="sortDrop">
<li class="current">Highest Rated</li>
<li><a class="criticSort" href="#" albumID="264058" year="2020" sort="lowest" rel="nofollow">Lowest Rated</a></li>
<li><a class="criticSort" href="#" albumID="264058" year="2020" sort="newest" rel="nofollow">Newest</a></li>
<li><a class="criticSort" href="#" albumID="264058" year="2020" sort="oldest" rel="nofollow">Oldest</a></li>
</ul>
</li>
</ul>
</div>
<div class="clear"></div>
<div class="albumReviewRow first" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291818" data-review-id="291818"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291818">
<div class="row"><a href="/ratings/44-the-guardian-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/44" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/44-the-guardian/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">100</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:100%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/44-the-guardian/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/the-guardian-sq.jpg" alt="The Guardian" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/44-the-guardian/" itemprop="url"><span itemprop="name">The Guardian</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>Released with little fanfare this move to more muted songwriting is proof Swift’s music can thrive without the celebrity drama.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-24 00:12:33">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.theguardian.com/music/2020/jul/24/taylor-swift-folklore-review-bombastic-pop-makes-way-for-emotional-acuity" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.theguardian.com/music/2020/jul/24/taylor-swift-folklore-review-bombastic-pop-makes-way-for-emotional-acuity" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 04:12:33 GMT">
<div class="date">2w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291819" data-review-id="291819"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291819">
<div class="row"><a href="/ratings/55-the-telegraph-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/55" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/55-the-telegraph/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">100</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:100%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/55-the-telegraph/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/the-telegraph-sq.jpg" alt="The Telegraph" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/55-the-telegraph/" itemprop="url"><span itemprop="name">The Telegraph</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>The lockdown may have been a terrible moment for music and musicians, but it has resulted in Taylor’s Swift’s most powerful and mature album to date.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-24 00:14:56">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.telegraph.co.uk/music/what-to-listen-to/taylor-swift-folklore-review-exquisite-empathetic-lockdown-triumph/" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.telegraph.co.uk/music/what-to-listen-to/taylor-swift-folklore-review-exquisite-empathetic-lockdown-triumph/" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 04:14:56 GMT">
<div class="date">2w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291826" data-review-id="291826"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291826">
<div class="row"><a href="/ratings/74-the-sydney-morning-herald-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/74" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/74-the-sydney-morning-herald/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">100</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:100%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/74-the-sydney-morning-herald/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/the-sydney-morning-herald-sq.jpg" alt="The Sydney Morning Herald" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/74-the-sydney-morning-herald/" itemprop="url"><span itemprop="name">The Sydney Morning Herald</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>Swift’s currency has always been emotional honesty, but now it feels less like showmanship and more like a personal reckoning. <em>Folklore</em> is a clear-eyed, subdued affair that reveals a little more magic with each listen.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-24 03:03:22">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.smh.com.au/culture/music/taylor-swift-s-new-album-is-a-fever-dream-you-won-t-want-to-wake-up-from-20200724-p55f4s.html" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.smh.com.au/culture/music/taylor-swift-s-new-album-is-a-fever-dream-you-won-t-want-to-wake-up-from-20200724-p55f4s.html" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 07:03:22 GMT">
<div class="date">2w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291847" data-review-id="291847"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291847">
<div class="row"><a href="/ratings/5-musicomh-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/5" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/5-musicomh/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">100</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:100%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/5-musicomh/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/musicomh-sq.jpg" alt="musicOMH" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/5-musicomh/" itemprop="url"><span itemprop="name">musicOMH</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p><em>Folklore</em> is sad, beautiful, somewhat tragic, a little bit off the wall, but most of all it feels free.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-24 05:29:33">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.musicomh.com/reviews/albums/taylor-swift-folklore" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.musicomh.com/reviews/albums/taylor-swift-folklore" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 09:29:33 GMT">
<div class="date">1w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291848" data-review-id="291848"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291848">
<div class="row"><a href="/ratings/71-gigwise-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/71" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/71-gigwise/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">100</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:100%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/71-gigwise/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/gigwise-sq.jpg" alt="Gigwise" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/71-gigwise/" itemprop="url"><span itemprop="name">Gigwise</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>In this record - in large part a remote collaboration between Taylor and The National’s Aaron Dessner - Taylor is contemplative, authorial, clear and simply exceptional.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-24 05:46:51">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.gigwise.com/reviews/3385813/album-review-taylor-swift-folklore" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.gigwise.com/reviews/3385813/album-review-taylor-swift-folklore" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 09:46:51 GMT">
<div class="date">1w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291979" data-review-id="291979"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291979">
<div class="row"><a href="/ratings/46-entertainment-weekly-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/46" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/46-entertainment-weekly/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">100</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:100%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/46-entertainment-weekly/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/entertainment-weekly-sq.jpg" alt="Entertainment Weekly" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/46-entertainment-weekly/" itemprop="url"><span itemprop="name">Entertainment Weekly</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">Swift explodes the expectations of anyone preparing to call her music "diaristic," writing songs from different perspectives while putting her already-detailed work under a microscope.</div>
<meta itemprop="dateCreated" content="2020-07-24 14:31:41">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://ew.com/music/music-reviews/taylor-swift-folklore-review/" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://ew.com/music/music-reviews/taylor-swift-folklore-review/" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 18:31:41 GMT">
<div class="date">1w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291994" data-review-id="291994"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291994">
<div class="row"><a href="/ratings/75-the-arts-desk-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/75" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/75-the-arts-desk/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">100</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:100%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/75-the-arts-desk/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/the-arts-desk-sq.jpg" alt="The Arts Desk" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/75-the-arts-desk/" itemprop="url"><span itemprop="name">The Arts Desk</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p><em>folklore</em> is an unexpected treat in the middle of a disrupted summer, one whose sepia-toned colour palette and muted production only adds to its magic.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-24 23:40:41">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.theartsdesk.com/new-music/album-taylor-swift-folklore" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.theartsdesk.com/new-music/album-taylor-swift-folklore" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="25 Jul 2020 03:40:41 GMT">
<div class="date">1w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_292168" data-review-id="292168"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_292168">
<div class="row"><a href="/ratings/73-albumism-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/73" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/73-albumism/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">100</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:100%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/73-albumism/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/albumism-sq.jpg" alt="Albumism" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/73-albumism/" itemprop="url"><span itemprop="name">Albumism</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>As a complete body of work, <em>folklore</em> is Swift’s most compelling and challenging record since <em>Reputation</em>. No longer a former “country starlet gone pop,” Swift is a woman with a singular vision moving forward to blaze new paths and create art that will resonate for years to come.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-25 22:00:22">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.albumism.com/reviews/taylor-swift-folklore" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.albumism.com/reviews/taylor-swift-folklore" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="26 Jul 2020 02:00:22 GMT">
<div class="date">1w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291980" data-review-id="291980"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291980">
<div class="row"><a href="/ratings/14-consequence-of-sound-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/14" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/14-consequence-of-sound/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">91</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:91%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/14-consequence-of-sound/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/consequence-of-sound-sq.jpg" alt="Consequence of Sound" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/14-consequence-of-sound/" itemprop="url"><span itemprop="name">Consequence of Sound</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>The singer-songwriter's eighth album cuts away the pop scaffolding for dark, dreamy contemplation.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-24 14:46:34">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://consequenceofsound.net/2020/07/album-review-taylor-swift-folklore/" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://consequenceofsound.net/2020/07/album-review-taylor-swift-folklore/" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 18:46:34 GMT">
<div class="date">1w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291825" data-review-id="291825"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291825">
<div class="row"><a href="/ratings/28-the-line-of-best-fit-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/28" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/28-the-line-of-best-fit/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">90</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:90%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/28-the-line-of-best-fit/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/the-line-of-best-fit-sq.jpg" alt="The Line of Best Fit" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/28-the-line-of-best-fit/" itemprop="url"><span itemprop="name">The Line of Best Fit</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>This is an album of Swift at her most knowing, pushing away the tabloid fodder that has often surrounded her artistry and magnifying the talent she's been honing her entire life.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-24 01:59:39">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.thelineofbestfit.com/reviews/albums/taylor-swift-folklore-album-review" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.thelineofbestfit.com/reviews/albums/taylor-swift-folklore-album-review" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 05:59:39 GMT">
<div class="date">2w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291967" data-review-id="291967"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291967">
<div class="row"><a href="/ratings/35-rolling-stone-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/35" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/35-rolling-stone/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">90</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:90%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/35-rolling-stone/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/rolling-stone-sq.jpg" alt="Rolling Stone" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/35-rolling-stone/" itemprop="url"><span itemprop="name">Rolling Stone</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>Her eighth album is a radical detour into the deepest collection of songs she’s ever come up with.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-24 11:40:00">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.rollingstone.com/music/music-album-reviews/taylor-swift-leaves-her-comfort-zones-behind-on-the-head-spinning-heart-breaking-folklore-1033533/" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.rollingstone.com/music/music-album-reviews/taylor-swift-leaves-her-comfort-zones-behind-on-the-head-spinning-heart-breaking-folklore-1033533/" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 15:40:00 GMT">
<div class="date">1w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291972" data-review-id="291972"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291972">
<div class="row"><a href="/ratings/54-northern-transmissions-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/54" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/54-northern-transmissions/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">90</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:90%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/54-northern-transmissions/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/northern-transmissions-sq.jpg" alt="Northern Transmissions" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/54-northern-transmissions/" itemprop="url"><span itemprop="name">Northern Transmissions</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>As surprising as the release of the record is, possibly more surprising will be seeing <em>folklore</em> become the record that turns a whole generation of dismissers into actual fans.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-24 12:39:01">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://northerntransmissions.com/folklore-taylor-swift/" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://northerntransmissions.com/folklore-taylor-swift/" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 16:39:01 GMT">
<div class="date">1w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_292376" data-review-id="292376"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_292376">
<div class="row"><a href="/ratings/36-slant-magazine-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/36" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/36-slant-magazine/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">90</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:90%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/36-slant-magazine/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/slant-magazine-sq.jpg" alt="Slant Magazine" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/36-slant-magazine/" itemprop="url"><span itemprop="name">Slant Magazine</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>It isn’t the weight of the subject matter alone that makes the album feel so vital—it’s the exemplary caliber of her writing. She may sing of wasted potential, but <em>Folklore</em> finds Swift living up to all of the praise she earned for her songwriting earlier in career.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-27 12:36:26">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.slantmagazine.com/music/review-with-folklore-taylor-swift-mines-pathos-from-a-widening-worldview/" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.slantmagazine.com/music/review-with-folklore-taylor-swift-mines-pathos-from-a-widening-worldview/" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="27 Jul 2020 16:36:26 GMT">
<div class="date">1w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_292483" data-review-id="292483"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_292483">
<div class="row"><a href="/ratings/43-clash-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/43" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/43-clash/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">90</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:90%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/43-clash/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/clash-sq.jpg" alt="Clash" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/43-clash/" itemprop="url"><span itemprop="name">Clash</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>Simply put, <em>folklore</em> is a speed bump. It is a small sliver of familiarity and nostalgia that broadcasts openness without resentment, mockery or one-sided representations, and finds Swift finally committing to shedding the brash, poppy sound in favor of the soft, tonal glow of reverb and contemplation.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-28 13:26:48">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.clashmusic.com/reviews/taylor-swift-folklore" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.clashmusic.com/reviews/taylor-swift-folklore" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="28 Jul 2020 17:26:48 GMT">
<div class="date">1w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291983" data-review-id="291983"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291983">
<div class="row"><a href="/ratings/11-paste-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/11" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/11-paste/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">87</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:87%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/11-paste/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/paste-sq.jpg" alt="Paste" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/11-paste/" itemprop="url"><span itemprop="name">Paste</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>Swift’s big 2020 plans for a long <em>Lover</em> tour were scrapped due to the coronavirus pandemic. But that empty window of time is what forced her to think outside the box, beyond what anyone expected of her, and to create one of her best, most perfectly-produced projects ever. In <em>folklore</em>, she wrote a quieter, more thought-provoking chapter in her constantly shapeshifting story.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-24 18:12:09">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.pastemagazine.com/music/taylor-swift/folklore-album-review/" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.pastemagazine.com/music/taylor-swift/folklore-album-review/" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 22:12:09 GMT">
<div class="date">1w</div>
</div>
</div>
</div>
<div class="center">
<a class="viewMoreCriticReviews" href="#">
<div id="viewMore" class="largeButton" style="margin-bottom: 15px;">View 16 More</div>
</a>
</div>
<div id="moreCricitReviews" class="moreAlbumReviews">
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291981" data-review-id="291981"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291981">
<div class="row"><a href="/ratings/12-av-club-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/12" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/12-av-club/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">83</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:83%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/12-av-club/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/av-club-sq.jpg" alt="A.V. Club" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/12-av-club/" itemprop="url"><span itemprop="name">A.V. Club</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">As a songwriter, Swift is unflappable, her observational faculties razor-sharp and keen, even when dealing with serious stuff: harsh critics, traumatic breakups, personal anguish, family stress, and now a pandemic.</div>
<meta itemprop="dateCreated" content="2020-07-24 17:03:22">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://music.avclub.com/taylor-swift-writes-her-own-version-of-history-on-folkl-1844498450" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://music.avclub.com/taylor-swift-writes-her-own-version-of-history-on-folkl-1844498450" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 21:03:22 GMT">
<div class="date">1w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291817" data-review-id="291817"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291817">
<div class="row"><a href="/ratings/9-nme-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/9" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/9-nme/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">80</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:80%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/9-nme/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/nme-sq.jpg" alt="NME" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/9-nme/" itemprop="url"><span itemprop="name">NME</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>This rich isolation album boasts collaborations with Bon Iver and The National's Aaron Dessner, and might just feature Taylor's best song ever.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-24 00:11:08">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.nme.com/reviews/taylor-swift-folklore-album-review-2713965" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.nme.com/reviews/taylor-swift-folklore-album-review-2713965" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 04:11:08 GMT">
<div class="date">2w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_291820" data-review-id="291820"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_291820">
<div class="row"><a href="/ratings/53-the-independent-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/53" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/53-the-independent/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>
</div>
<div style="float:left;">
<div class="albumReviewRating" itemprop="reviewRating" itemscope itemtype="http://schema.org/Rating">
<span itemprop="ratingValue">80</span>
<meta itemprop="bestRating" content="100">
<meta itemprop="worstRating" content="0">
</div>
<div class="albumReviewRatingBar green">
<div class="green" style="width:80%;"></div>
</div>
</div>
<div class="albumReviewImage"><a href="/publication/53-the-independent/"><img class="lazyload" src="https://cdn.albumoftheyear.org/images/clear.gif" data-src="https://cdn2.albumoftheyear.org/75x/publication/the-independent-sq.jpg" alt="The Independent" /></a></div>
<div class="albumReviewHeader" itemprop="author" itemscope itemtype="http://schema.org/Organization"><a href="/publication/53-the-independent/" itemprop="url"><span itemprop="name">The Independent</span></a></div>
<div class="clear"></div>
<div class="albumReviewText" itemprop="reviewBody">
<p>This is an unconventional record – at least for the world’s biggest pop star. It’s also brilliant.</p>
</div>
<meta itemprop="dateCreated" content="2020-07-24 00:15:34">
<div class="albumReviewLinks">
<div class="actionContainer">
<div class="extLinkIcon"><a href="https://www.independent.co.uk/arts-entertainment/music/reviews/taylor-swift-folklore-review-lyrics-album-stream-jack-antonoff-aaron-dessner-a9635496.html" target="_blank" itemprop="url" rel="nofollow"><i class="far fa-link"></i></a></div>
<div class="extLink"><a href="https://www.independent.co.uk/arts-entertainment/music/reviews/taylor-swift-folklore-review-lyrics-album-stream-jack-antonoff-aaron-dessner-a9635496.html" target="_blank" itemprop="url" rel="nofollow">Full Review</a></div>
</div>
<div class="actionContainer" title="24 Jul 2020 04:15:34 GMT">
<div class="date">2w</div>
</div>
</div>
</div>
<div class="albumReviewRow" itemprop="review" itemscope itemtype="http://schema.org/Review">
<div class="dotDropMenuContainer">
<div class="dotDropMenuButton"><a class="criticReviewMenuToggle" href="#" id="critic_menu_292340" data-review-id="292340"><i class="far fa-ellipsis-h"></i></a></div>
<div class="dotDropMenu" id="critic_review_292340">
<div class="row"><a href="/ratings/1-pitchfork-highest-rated/2020/1" rel="nofollow">Best of 2020</a></div>
<div class="row"><a href="/ratings/worst/2020/1" rel="nofollow">Worst of 2020</a></div>
<div class="row"><a href="/publication/1-pitchfork/reviews/" rel="nofollow">Recent Reviews</a></div>
</div>