-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path20th-century-boy-and-girl.html
1230 lines (1069 loc) · 81.3 KB
/
20th-century-boy-and-girl.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>
<!--[if lt IE 7]>
<html class="lt-ie9 lt-ie8 lt-ie7" lang="en-US"> <![endif]-->
<!--[if IE 7]>
<html class="lt-ie9 lt-ie8" lang="en-US"> <![endif]-->
<!--[if IE 8]>
<html class="lt-ie9" lang="en-US"> <![endif]-->
<!--[if IE 9]>
<html class="ie9" lang="en-US"> <![endif]-->
<!--[if gt IE 9]><!-->
<html lang="en-US"> <!--<![endif]-->
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="HandheldFriendly" content="True">
<meta name="apple-touch-fullscreen" content="yes"/>
<meta name="MobileOptimized" content="320">
<title>20th Century Boy and Girl – Download Full Episodes For Free – Dramaday.net</title>
<link href="https://fonts.googleapis.com" rel="preconnect" crossorigin><link href="https://fonts.gstatic.com" rel="preconnect" crossorigin><style> @media screen and (min-width: 481px) and (max-width: 899px) {
.mosaic .mosaic__item {
width: 33.33%;
}
}
@media screen and (min-width: 900px) and (max-width: 1249px) {
.mosaic .mosaic__item {
width: 33.33%;
}
}
@media screen and (min-width: 1250px){
.mosaic .mosaic__item {
width: 25%;
}
}</style>
<!-- This site is optimized with the Yoast SEO Premium plugin v14.6.1 - https://yoast.com/wordpress/plugins/seo/ -->
<meta name="description" content="Download 20th Century Boy and Girl - 20세기 소년소녀 (K-Drama - 2017) With English, Indonesian Subtitle [720p/540p/Raw/Web-Rip]" />
<meta name="robots" content="index, follow" />
<meta name="googlebot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<meta name="bingbot" content="index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1" />
<link rel="canonical" href="https://dramaday.net/20th-century-boy-and-girl/" />
<meta property="og:locale" content="en_US" />
<meta property="og:type" content="article" />
<meta property="og:title" content="20th Century Boy and Girl – Download Full Episodes For Free – Dramaday.net" />
<meta property="og:description" content="Download 20th Century Boy and Girl - 20세기 소년소녀 (K-Drama - 2017) With English, Indonesian Subtitle [720p/540p/Raw/Web-Rip]" />
<meta property="og:url" content="https://dramaday.net/20th-century-boy-and-girl/" />
<meta property="og:site_name" content="Dramaday.net" />
<meta property="article:published_time" content="2017-10-15T10:24:33+00:00" />
<meta property="article:modified_time" content="2022-09-29T01:48:16+00:00" />
<meta property="og:image" content="https://dramaday.net/wp-content/uploads/2017/10/20th-century-boy-and-girl.jpg" />
<meta property="og:image:width" content="400" />
<meta property="og:image:height" content="596" />
<meta name="twitter:card" content="summary" />
<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebSite","@id":"https://dramaday.net/#website","url":"https://dramaday.net/","name":"Dramaday.net","description":"","potentialAction":[{"@type":"SearchAction","target":"https://dramaday.net/?s={search_term_string}","query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"ImageObject","@id":"https://dramaday.net/20th-century-boy-and-girl/#primaryimage","inLanguage":"en-US","url":"https://dramaday.net/wp-content/uploads/2017/10/20th-century-boy-and-girl.jpg","width":400,"height":596,"caption":"20th Century Boy and Girl"},{"@type":"WebPage","@id":"https://dramaday.net/20th-century-boy-and-girl/#webpage","url":"https://dramaday.net/20th-century-boy-and-girl/","name":"20th Century Boy and Girl – Download Full Episodes For Free – Dramaday.net","isPartOf":{"@id":"https://dramaday.net/#website"},"primaryImageOfPage":{"@id":"https://dramaday.net/20th-century-boy-and-girl/#primaryimage"},"datePublished":"2017-10-15T10:24:33+00:00","dateModified":"2022-09-29T01:48:16+00:00","author":{"@id":"https://dramaday.net/#/schema/person/7213b68abb864b1d62b7419157b38b19"},"description":"Download 20th Century Boy and Girl - 20\uc138\uae30 \uc18c\ub144\uc18c\ub140 (K-Drama - 2017) With English, Indonesian Subtitle [720p/540p/Raw/Web-Rip]","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https://dramaday.net/20th-century-boy-and-girl/"]}]},{"@type":["Person"],"@id":"https://dramaday.net/#/schema/person/7213b68abb864b1d62b7419157b38b19","name":"Gogo"}]}</script>
<!-- / Yoast SEO Premium plugin. -->
<link rel='dns-prefetch' href='//pxgcdn.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//maxcdn.bootstrapcdn.com' />
<link rel='dns-prefetch' href='//s.w.org' />
<script type="text/javascript">
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/13.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/dramaday.net\/wp-includes\/js\/wp-emoji-release.min.js"}};
!function(e,a,t){var n,r,o,i=a.createElement("canvas"),p=i.getContext&&i.getContext("2d");function s(e,t){var a=String.fromCharCode;p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,e),0,0);e=i.toDataURL();return p.clearRect(0,0,i.width,i.height),p.fillText(a.apply(this,t),0,0),e===i.toDataURL()}function c(e){var t=a.createElement("script");t.src=e,t.defer=t.type="text/javascript",a.getElementsByTagName("head")[0].appendChild(t)}for(o=Array("flag","emoji"),t.supports={everything:!0,everythingExceptFlag:!0},r=0;r<o.length;r++)t.supports[o[r]]=function(e){if(!p||!p.fillText)return!1;switch(p.textBaseline="top",p.font="600 32px Arial",e){case"flag":return s([127987,65039,8205,9895,65039],[127987,65039,8203,9895,65039])?!1:!s([55356,56826,55356,56819],[55356,56826,8203,55356,56819])&&!s([55356,57332,56128,56423,56128,56418,56128,56421,56128,56430,56128,56423,56128,56447],[55356,57332,8203,56128,56423,8203,56128,56418,8203,56128,56421,8203,56128,56430,8203,56128,56423,8203,56128,56447]);case"emoji":return!s([55357,56424,8205,55356,57212],[55357,56424,8203,55356,57212])}return!1}(o[r]),t.supports.everything=t.supports.everything&&t.supports[o[r]],"flag"!==o[r]&&(t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&t.supports[o[r]]);t.supports.everythingExceptFlag=t.supports.everythingExceptFlag&&!t.supports.flag,t.DOMReady=!1,t.readyCallback=function(){t.DOMReady=!0},t.supports.everything||(n=function(){t.readyCallback()},a.addEventListener?(a.addEventListener("DOMContentLoaded",n,!1),e.addEventListener("load",n,!1)):(e.attachEvent("onload",n),a.attachEvent("onreadystatechange",function(){"complete"===a.readyState&&t.readyCallback()})),(n=t.source||{}).concatemoji?c(n.concatemoji):n.wpemoji&&n.twemoji&&(c(n.twemoji),c(n.wpemoji)))}(window,document,window._wpemojiSettings);
</script>
<style type="text/css">
img.wp-smiley,
img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 .07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='customify-font-stylesheet-0-css' href='https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=PT%20Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap' type='text/css' media='all' />
<link rel='stylesheet' id='wp-block-library-css' href='https://dramaday.net/wp-includes/css/dist/block-library/style.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='pixlikes-plugin-styles-css' href='https://dramaday.net/wp-content/plugins/pixlikes/css/public.css' type='text/css' media='all' />
<style id='pixlikes-plugin-styles-inline-css' type='text/css'>
.animate i:after {-webkit-transition: all 1000ms;-moz-transition: all 1000ms;-o-transition: all 1000ms;transition: all 1000ms; }
</style>
<link rel='stylesheet' id='scrolltotop-css' href='https://dramaday.net/wp-content/plugins/scrolltotop/assets/css/styles.min.css' type='text/css' media='all' />
<style id='scrolltotop-inline-css' type='text/css'>
#scrollToTop.stt-button{background:#1a1919;padding:12px;color:#ffffff;font-size:20px;border-radius:6px;right:25px;opacity:0.85;}#scrollToTop.stt-button i:before{content:"\f077";}#scrollToTop.stt-button:hover{background:#3fa9f5;opacity:1;}#scrollToTop.stt-visible{bottom:25px;}#scrollToTop.stt-hidden{bottom:-75px;}@media only screen and (max-width:600px){#scrollToTop.stt-button{padding:7px;font-size:16px;}}#scrollToTop{-webkit-transition:background 100ms ease-in-out,bottom 200ms ease-in-out;-o-transition:background 100ms ease-in-out,bottom 200ms ease-in-out;transition:background 100ms ease-in-out,bottom 200ms ease-in-out;}#scrollToTop.stt-notransition{-webkit-transition:background 100ms ease-in-out,bottom 0s;-o-transition:background 100ms ease-in-out,bottom 0s;transition:background 100ms ease-in-out,bottom 0s;}
</style>
<link rel='stylesheet' id='heap-main-style-css' href='https://dramaday.net/wp-content/themes/heap/style.css' type='text/css' media='all' />
<link rel='stylesheet' id='tablepress-default-css' href='https://dramaday.net/wp-content/tablepress-combined.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='js_composer_front-css' href='https://dramaday.net/wp-content/plugins/js_composer/assets/css/js_composer.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='animate-css' href='https://dramaday.net/wp-content/plugins/pe-recent-posts/css/animate.css' type='text/css' media='all' />
<link rel='stylesheet' id='pe-recent-posts-css' href='https://dramaday.net/wp-content/plugins/pe-recent-posts/css/pe-recent-posts.css' type='text/css' media='all' />
<script type='text/javascript' id='jquery-core-js-extra'>
/* <![CDATA[ */
var SDT_DATA = {"ajaxurl":"https:\/\/dramaday.net\/wp-admin\/admin-ajax.php","siteUrl":"https:\/\/dramaday.net\/","pluginsUrl":"https:\/\/dramaday.net\/wp-content\/plugins","isAdmin":""};
/* ]]> */
</script>
<script type='text/javascript' src='https://dramaday.net/wp-includes/js/jquery/jquery.js' id='jquery-core-js'></script>
<script type='text/javascript' src='https://dramaday.net/wp-content/plugins/pe-recent-posts/js/bootstrap.min.js' id='bootstrap.min-js'></script>
<script type='text/javascript' src='//pxgcdn.com/js/rs/9.5.7/index.js' id='heap-rs-js'></script>
<script type='text/javascript' id='wbcr_clearfy-css-lazy-load-js-extra'>
/* <![CDATA[ */
var wbcr_clearfy_async_links = {"wbcr_clearfy-font-awesome":"\/\/maxcdn.bootstrapcdn.com\/font-awesome\/4.7.0\/css\/font-awesome.min.css"};
/* ]]> */
</script>
<script type='text/javascript' src='https://dramaday.net/wp-content/plugins/clearfy/assets/js/css-lazy-load.min.js' id='wbcr_clearfy-css-lazy-load-js'></script>
<script async src="/arc-widget#q4sRBctf?env=wp&wpPluginVersion=1.1.9"></script><script type="text/javascript">
var go_url = 'https://ponselharian.com/';
var api = '474c461b43085472f03d052f4dee9134f9198187';
var shorten_includ = ["drive.google.com", "dddrive.me", "mega.nz", "mega.co.nz", "www.mirrored.to", "uptobox.com", "pixeldrain.com", "www.mediafire.com", "mir.cr", "*.zippyshare.com", "send.cm", "krakenfiles.com", "filecrypt.cc"];
</script>
<script src='https://dramaday.net/soundtrack.js'></script><style></style><meta name="generator" content="Powered by WPBakery Page Builder - drag and drop page builder for WordPress."/>
<link rel="icon" href="https://dramaday.net/wp-content/uploads/2017/10/cropped-ddv2-32x32.png" sizes="32x32" />
<link rel="icon" href="https://dramaday.net/wp-content/uploads/2017/10/cropped-ddv2-192x192.png" sizes="192x192" />
<link rel="apple-touch-icon" href="https://dramaday.net/wp-content/uploads/2017/10/cropped-ddv2-180x180.png" />
<meta name="msapplication-TileImage" content="https://dramaday.net/wp-content/uploads/2017/10/cropped-ddv2-270x270.png" />
<style id="customify_output_style">
.site-title--image img { max-height: 60px; }
body:not(.header--small) .site-logo--text { font-size: 60px; }
.container, .search__container, .site-header__container, .header--sticky .site-header__container { max-width: 1368px; }
.navigation a { font-size: 17px; }
.navigation a { letter-spacing: 1px; }
.navigation a { text-transform: uppercase; }
.nav--main > .menu-item > a { text-decoration: none; }
body, .article, .single .main, .page .main,
.comment__content,
.footer__widget-area { font-size: 16px; }
body { line-height: 1.4; }
a, a:hover, .link--light:hover,
.text-link:hover,
.heap_popular_posts .article__category:hover,
.meta-list a.btn:hover,
.meta-list a.comments_add-comment:hover,
.meta-list .form-submit a#comment-submit:hover,
.form-submit .meta-list a#comment-submit:hover,
.meta-list .widget_tag_cloud a:hover,
.widget_tag_cloud .meta-list a:hover,
.meta-list a.load-more__button:hover,
.article__comments-number:hover,
.author__social-link:hover,
.article-archive .article__categories a:hover,
.link--dark:hover,
.nav--main a:hover,
.comment__author-name a:hover,
.author__title a:hover,
.site-title--small a:hover,
.site-header__menu a:hover,
.widget a:hover,
.article-archive--quote blockquote:before,
.menu-item-has-children:hover > a,
ol.breadcrumb a:hover,
a:hover > .pixcode--icon,
.tabs__nav a.current, .tabs__nav a:hover,
.quote--single-featured:before,
.site-header__menu .nav--social a:hover:before,
.widget_nav_menu > div[class*="social"] a:hover:before,
.price ins, .price > span,
.shop-categories a.active { color: #0093bf; }
.pagination .pagination-item--current span,
.pagination li a:hover,
.pagination li span:hover,
.rsNavSelected,
.progressbar__progress,
.comments_add-comment:hover,
.form-submit #comment-submit:hover,
.widget_tag_cloud a:hover,
.btn--primary,
.comments_add-comment,
.form-submit #comment-submit,
a:hover > .pixcode--icon.circle,
a:hover > .pixcode--icon.square,
.pixcode--icon.square:hover, .pixcode--icon.circle:hover,
.btn--add-to-cart,
.wpcf7-form-control.wpcf7-submit,
.pagination--archive ol li a:hover,
.btn:hover,
.comments_add-comment:hover,
.form-submit #comment-submit:hover,
.widget_tag_cloud a:hover,
.load-more__button:hover,
#review-submit:hover, body.woocommerce div.woocommerce-message .button:hover,
td.actions input.button:hover, form.shipping_calculator button.button:hover,
body.woocommerce-page input.button:hover,
body.woocommerce #content input.button.alt:hover,
body.woocommerce #respond input#submit.alt:hover,
body.woocommerce a.button.alt:hover,
body.woocommerce button.button.alt:hover,
body.woocommerce input.button.alt:hover,
body.woocommerce-page #content input.button.alt:hover,
body.woocommerce-page #respond input#submit.alt:hover,
body.woocommerce-page a.button.alt:hover,
body.woocommerce-page button.button.alt:hover,
body.woocommerce-page input.button.alt:hover { background-color: #0093bf; }
select:focus, textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus, .form-control:focus { outline-color: #0093bf; }
body { color: #424242; }
h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, .article-archive .article__title a, .article-archive .article__title a:hover { color: #1a1919; }
.header { background-color: #ffffff; }
.site-header__menu .nav--social a:before, .site-header__menu a { color: #1a1919; }
.nav--main a { color: #211919; }
.site-footer, .site-footer a { color: #1a1919; }
.copyright-text { color: #919191; }
@media screen and (min-width: 900px) {
.header { padding-top: 4px; }
.container { padding-right: 78px; }
}
@media screen and (min-width: 900px) {
.header { padding-bottom: 4px; }
.nav--main > .menu-item > a { padding-bottom: 3px; }
.nav--main > .menu-item > a { padding-right: 7px; }
}
@media screen and (min-width: 900px) {
.nav--main > .menu-item > a { padding-top: 3px; }
.nav--main > .menu-item > a { padding-left: 7px; }
.container { padding-left: 78px; }
.navigation--main, .navigation--main .sub-menu { background-color: #ffffff; }
}
@media screen and (min-width: 900px) {
.nav--main > .menu-item > a { margin-top: 3px; }
.nav--main > .menu-item > a { margin-right: 7px; }
}
@media screen and (min-width : 900px) {
.nav--main > .menu-item > a { margin-bottom: 3px; }
.nav--main > .menu-item > a { margin-left: 7px; }
}
@media only screen and (min-width: 900px) {
.sidebar--main { width: 290px; }
}
@media only screen and (min-width: 900px) {
body:not(.rtl) .page-content.has-sidebar:after { right: 290px; }
}
@media only screen and (min-width: 900px) {
body.rtl .page-content.has-sidebar:after { left: 290px; }
}
@media only screen and (min-width : 900px ) {
body:not(.rtl) .page-content.has-sidebar .page-content__wrapper { margin-right: 290px; }
}
@media only screen and (min-width : 900px ) {
body.rtl .page-content.has-sidebar .page-content__wrapper { margin-left: 290px; }
}
@media only screen and (min-width : 900px ) {
body:not(.rtl) .page-content.has-sidebar{
margin-right: -290px;
}
}
@media only screen and (min-width : 900px ) {
body.rtl .page-content.has-sidebar{
margin-left: -290px;
}
}
@media @media only screen and (min-width: 900px) {
.nav--main li:hover, .nav--main li.current-menu-item { heap-bottom-color: #0093bf; }
}
@media @media only screen and (min-width: 900px) {
.back-to-top a:hover:after, .back-to-top a:hover:before { border-color: #0093bf; }
}
@media @media only screen and (min-width: 1201px) {
.team-member__profile{
background: rgba(0,147,191, 0.5);
}
}
</style>
<style id="customify_fonts_output">
.navigation a {
font-family: Lato;
font-weight: 300;
}
h1, h2, h3, h4, h5, h6, hgroup, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a, blockquote, .tabs__nav, .popular-posts__time, .pagination li a, .pagination li span {
font-family: Satify;
}
html, .wp-caption-text, .small-link, .post-nav-link__label, .author__social-link, .comment__links, .score__desc {
font-family: "PT Serif";
}
</style>
<style type="text/css" id="wp-custom-css">
/*
You can add your own CSS here.
Click the help icon above to learn more.
*/
/* hide post featured image */
.format-standard .article__featured-image { max-height: 0px; overflow: hidden; }
.format-audio .article__featured-image img { display: none;}
/* margin last updated widget */
#mw_lastupdated_widget-2.widget.widget--sidebar-blog.mw_lastupdated ul {
margin: 15px;
}
.mw_lastupdated_time {
color: #b3b3be
}
/* text sidebar normal link */
#text-2.widget.widget--sidebar-blog.widget_text a{
color: #3FA9F5;
}
/* text sidebar link hover */
#text-2.widget.widget--sidebar-blog.widget_text a:hover{
color: #000000;
}
/*table link hover underlined*/
.supsystic-table a:hover {
text-decoration: underline; }
/*table visited link color*/
/*.supsystic-table a:visited { color: #AF499F; }*/
/*copyright text centered*/
.copyright-tex {
text-align: center;
}
/*hide yarpp no related post*/
.yarpp-related.yarpp-related-none {
display: none;
}
/*yarpp no c and l*/
.yarpp-related .mosaic__item .article__meta {
display: none;
}
/*user role label css*/
.comment-author-label {padding: 4px; border-radius: 5px; font-size: 11px; color: #FFFFFF; background-color: #262525; font-weight: bold;}
/*a-z listing*/
.back-to-top {display: none;}
/*tablepress Cosmetic*/
.tablepress a:hover {
text-decoration: underline;
}
/*.tablepress a:visited {
color: #AF499F;
}*/
.tablepress thead th {
border-color: #1a1919;
}
.yottie-widget-nav-inner {
display: none
}
/* Scrolbar Cosmetic */
::-webkit-scrollbar {
width: 12px;
}
::-webkit-scrollbar-track {
-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
-webkit-box-shadow: inset 0 0 6px rgba(63,169,245,1);
}
/* for gecko */
:root { overflow-y: scroll;
scrollbar-color: #88bfdf #d0d0d0;
scrollbar-width: thin;
} </style>
<noscript><style> .wpb_animate_when_almost_visible { opacity: 1; }</style></noscript></head>
<body class="post-template-default single single-post postid-302 single-format-standard header--sticky nav-dropdown-plus nav-scroll-show wpb-js-composer js-comp-ver-6.5.0 vc_responsive" >
<!--[if lt IE 7]>
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade
your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to
improve your experience.</p>
<![endif]-->
<div class="wrapper js-wrapper" id="page">
<div class="search__wrapper">
<button class="search__close js-search-close"></button>
<div class="search__container">
<form class="search-fullscreen" method="get" action="https://dramaday.net/" role="search">
<input type="text" name="s" class="search-input js-search-input" placeholder="Type to search" autocomplete="off" value="" /><!--
--><button class="search-button" id="searchsubmit"><i class="icon icon-search"></i></button>
</form>
<hr class="separator" />
<p class="search-description">Begin typing your search above and press return to search. Press Esc to cancel.</p>
</div>
</div> <header class="site-header">
<div class="site-header__wrapper js-sticky header--active visible">
<div class="site-header__container">
<div class="header flexbox">
<div class="header-component header-component--left">
<ul class="nav site-header__menu">
<li class="menu-trigger">
<a href="#" class="js-nav-trigger">
<i class="icon icon-bars"></i>
</a>
</li>
</ul>
</div>
<div class="header-component header-component--center header-transition--image-to-text">
<div class="site-header__branding">
<h1 class="site-title site-title--image">
<a class="site-logo site-logo--image" href="https://dramaday.net" title="Dramaday.net"
rel="home">
<img src="https://dramaday.net/wp-content/uploads/2017/10/dramaday.png" rel="logo"
alt="Dramaday.net"/>
</a>
</h1>
<p class="site-header__description"></p>
</div>
<h1 class="site-title site-title--small"><a href="https://dramaday.net">Dramaday.net</a></h1>
</div>
<div class="header-component header-component--right">
<ul class="nav site-header__menu">
<li class="search-trigger">
<a href="#" class="js-search-trigger"><i class="icon-e-search"></i></a></li>
</ul>
</div>
</div>
<nav class="navigation navigation--main" id="js-navigation--main">
<h2 class="accessibility">Primary Navigation</h2>
<ul id="menu-main-menu" class="nav--main"><li id="menu-item-12" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-home menu-item-12"><a href="https://dramaday.net">Home</a></li>
<li id="menu-item-632" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-parent-item hidden menu-item-632"><a href="#">Dramas</a>
<ul class="sub-menu">
<li id="menu-item-23" class="menu-item menu-item-type-taxonomy menu-item-object-category current-post-ancestor current-menu-parent current-post-parent menu-item-23"><a href="https://dramaday.net/drama/completed/">Completed</a></li>
<li id="menu-item-24" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-24"><a href="https://dramaday.net/drama/ongoing/">Ongoing</a></li>
<li id="menu-item-639" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-639"><a href="https://dramaday.net/drama-index/">Index</a></li>
</ul>
</li>
<li id="menu-item-12055" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-has-children menu-parent-item hidden menu-item-12055"><a href="https://dramaday.net/movie/">Movies</a>
<ul class="sub-menu">
<li id="menu-item-12841" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-12841"><a href="https://dramaday.net/movie-index/">Index</a></li>
</ul>
</li>
<li id="menu-item-441" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-441"><a href="https://dramaday.net/ost/">OST</a></li>
<li id="menu-item-4128" class="menu-item menu-item-type-taxonomy menu-item-object-category menu-item-4128"><a href="https://dramaday.net/variety-show/">Variety</a></li>
<li id="menu-item-5828" class="menu-item menu-item-type-post_type menu-item-object-post menu-item-5828"><a href="https://dramaday.net/how-to-download/">How to Download</a></li>
<li id="menu-item-11258" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-parent-item hidden menu-item-11258"><a href="#">Donate</a>
<ul class="sub-menu">
<li id="menu-item-11262" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11262"><a href="https://ko-fi.com/dramaday">Ko-fi</a></li>
<li id="menu-item-11374" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11374"><a href="https://paypal.me/ddeveryday">Paypal</a></li>
<li id="menu-item-11263" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-11263"><a href="https://trakteer.id/dramaday/tip">Trakteer</a></li>
</ul>
</li>
</ul> </nav><!-- .navigation .navigation- -main -->
</div><!-- .site-header__container -->
</div><!-- .site-header__wrapper -->
</header><!-- .site-header -->
<div class="container js-container">
<section class="content">
<div class="page-content single-content has-sidebar">
<div class="page-content__wrapper"> <article class="article-single single-post has-thumbnail post-302 post type-post status-publish format-standard has-post-thumbnail hentry category-completed category-drama tag-74 tag-20th-century-boy-and-girl tag-comedy tag-romance" itemscope itemType="http://schema.org/Article">
<header class="article__header">
<div class="article__featured-image" itemprop="image" itemscope itemtype="http://schema.org/ImageObject">
<img itemprop="url" src="https://dramaday.net/wp-content/uploads/2017/10/20th-century-boy-and-girl.jpg" alt="20th Century Boy and Girl" srcset="https://dramaday.net/wp-content/uploads/2017/10/20th-century-boy-and-girl.jpg 400w, https://dramaday.net/wp-content/uploads/2017/10/20th-century-boy-and-girl-201x300.jpg 201w" sizes="(max-width: 400px) 99vw, 400px" /> <meta itemprop="width" content="400">
<meta itemprop="height" content="596">
</div>
<div class="breadcrumbs" itemscope itemtype="http://data-vocabulary.org/Breadcrumb">
<a href="https://dramaday.net" itemprop="url" class="home">
<span itemprop="title">Home</span>
</a>
<span class="separator"></span><div itemprop="child" itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="cat-item cat-item-3"><a href="https://dramaday.net/drama/" itemprop="url"title="View all posts filed under Drama"><span itemprop="title">Drama</span></a></div>
<span class="separator"></span><div itemprop="child" itemscope itemtype="http://data-vocabulary.org/Breadcrumb" class="cat-item cat-item-4"><a href="https://dramaday.net/drama/completed/" itemprop="url"title="View all posts filed under Completed"><span itemprop="title">Completed</span></a></div>
<span class="separator"></span></div>
<h1 class="article__title entry-title" itemprop="name headline mainEntityOfPage">20th Century Boy and Girl</h1>
<hr class="separator"/>
</header><!-- .article__header -->
<section class="article__content entry-content js-post-gallery" itemprop="articleBody">
<div class="vc_row wpb_row vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-3"><div class="vc_column-inner"><div class="wpb_wrapper">
<div class="wpb_single_image wpb_content_element vc_align_left">
<figure class="wpb_wrapper vc_figure">
<a data-rel="prettyPhoto[rel-302-1535867045]" href="https://dramaday.net/wp-content/uploads/2017/10/20th-century-boy-and-girl.jpg" target="_self" class="vc_single_image-wrapper vc_box_border_grey prettyphoto"><img width="201" height="300" src="https://dramaday.net/wp-content/uploads/2017/10/20th-century-boy-and-girl-201x300.jpg" class="vc_single_image-img attachment-medium" alt="20th Century Boy and Girl" loading="lazy" srcset="https://dramaday.net/wp-content/uploads/2017/10/20th-century-boy-and-girl-201x300.jpg 201w, https://dramaday.net/wp-content/uploads/2017/10/20th-century-boy-and-girl.jpg 400w" sizes="(max-width: 201px) 99vw, 201px" /></a>
</figure>
</div>
</div></div></div><div class="wpb_column vc_column_container vc_col-sm-9"><div class="vc_column-inner"><div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element " >
<div class="wpb_wrapper">
<p>Title: 20세기 소년소녀 / 20th Century Boy and Girl<br />
Also known as: Twentieth Century Boy and Girl / Boy and Girl From the 20th Century<br />
Genre: Romance, Comedy<br />
Episodes: 32 (35 minutes/episode)<br />
Broadcast network: MBC<br />
Broadcast period: 2017-Oct-09 to 2017-Nov-28<br />
Air time: Mondays & Tuesdays 22:00 KST</p>
</div>
</div>
</div></div></div></div><div class="vc_row wpb_row vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-12"><div class="vc_column-inner"><div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element " >
<div class="wpb_wrapper">
<p>The heartwarming romantic comedy is about the friendship and love lives of three single virgins born in 1983. Their romantic lives begin when the boy they liked in their youth shows up one day. They live in Oksu-dong in rundown apartments, and the warm human drama will be about neighborly affection, and the meaning of home, family, and friendship.</p>
</div>
</div>
</div></div></div></div><div class="vc_row wpb_row vc_row-fluid"><div class="wpb_column vc_column_container vc_col-sm-8"><div class="vc_column-inner"><div class="wpb_wrapper">
<div class="wpb_text_column wpb_content_element " >
<div class="wpb_wrapper">
<div class="pixcode pixcode--tabs">
<ul class="pixcode--tabs__nav tabs__nav nav nav-tabs">
<li>
<a href="#ui-tab-06347b80c96b56" class="current" data-toggle="tab"><i class="icon icon-light icon-download"></i>Download</a> </li>
<li>
<a href="#ui-tab-16347b80c96b5e" class="" data-toggle="tab"><i class="icon icon-light icon-video-camera"></i>Trailer</a> </li>
</ul>
<div class="pixcode--tabs__content tabs__content">
<div class="tabs__pane " id="ui-tab-06347b80c96b56">
<strong>Subtitles:</strong> <a href="https://subscene.com/subtitles/20th-century-boy-and-girl-children-of-20th-century-20segi-sonyeonsonyeo-20" target="_blank" rel="noopener">Subscene</a></p>
<div class="supsystic-table-loader spinner"style="background-color:#000000"></div><div id="supsystic-table-57_9880" class="supsystic-tables-wrap " style=" width:100%; visibility: hidden; " data-table-width-fixed="100%" data-table-width-mobile="100%" ><table id="supsystic-table-57" class="supsystic-table compact nowrap paragraphMode border lightboxImg row-border" data-id="57" data-view-id="57_9880" data-title="20th Century Boy and Girl" data-currency-format="$1,000.00" data-percent-format="10.00%" data-date-format="DD.MM.YYYY" data-time-format="HH:mm" data-features="["after_table_loaded_script"]" data-search-value="" data-lightbox-img="" data-head-rows-count="1" data-pagination-length="50,100,All" data-auto-index="off" data-searching-settings="{"columnSearchPosition":"bottom","minChars":"0"}" data-lang="default" data-override="{"emptyTable":"","info":"","infoEmpty":"","infoFiltered":"","lengthMenu":"","search":"","zeroRecords":"","exportLabel":"","file":"default"}" data-merged="[]" data-responsive-mode="2" data-from-history="0" ><thead><tr><th class="" style="width:35%; padding: 0 !important;"></th><th class="" style="width:55%; padding: 0 !important;"></th></tr></thead><tbody><tr ><td data-cell-id="A1" data-x="0" data-y="1" data-db-index="1" class="bold htCenter htMiddle" data-cell-type="text" data-original-value="Episode" data-order="Episode" style="min-width:35%; width:35%;" >Episode </td><td data-cell-id="B1" data-x="1" data-y="1" data-db-index="1" class="htCenter htMiddle bold" data-cell-type="text" data-original-value="Download" data-order="Download" style="min-width:55%; width:55%;" >Download </td></tr><tr ><td data-cell-id="A2" data-x="0" data-y="2" data-db-index="2" class="bold htCenter htMiddle" data-cell-type="text" data-cell-format-type="number" data-original-value="01-32" data-order="01-32" >01-32 </td><td data-cell-id="B2" data-x="1" data-y="2" data-db-index="2" class="htCenter htMiddle bold" data-cell-type="text" data-original-value="<a href="https://teknosimple.com/wfhwc8icl" target="_blank">720p</a> | <a href="https://teknosimple.com/XAxPQ" target="_blank">540p</a>" data-order="<a href="https://teknosimple.com/wfhwc8icl" target="_blank">720p</a> | <a href="https://teknosimple.com/XAxPQ" target="_blank">540p</a>" ><a href="https://teknosimple.com/wfhwc8icl" target="_blank">720p</a> | <a href="https://teknosimple.com/XAxPQ" target="_blank">540p</a></td></tr></tbody></table><!-- /#supsystic-table-57.supsystic-table --></div><!-- /.supsystic-tables-wrap --><!-- Tables Generator by Supsystic --><!-- Version:1.10.20 --><!-- http://supsystic.com/ --> </div>
<div class="tabs__pane hide" id="ui-tab-16347b80c96b5e">
</p>
<p><iframe title="[NEW] 20th Century Boy and Girl 1st Teaser" width="912" height="513" src="https://www.youtube.com/embed/0IYC6cAZDgY?feature=oembed" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe></p>
<p> </div>
</div>
</div>
</div>
</div>
</div></div></div><div class="wpb_column vc_column_container vc_col-sm-4"><div class="vc_column-inner"><div class="wpb_wrapper"><div class="vc_empty_space" style="height: 0px"><span class="vc_empty_space_inner"></span></div></div></div></div></div>
</section>
<!-- .article__content -->
<footer class="article__footer push--bottom">
<div class="meta--categories btn-list meta-list">
<span class="btn btn--small btn--secondary list-head">Categories</span>
<a class="btn btn--small btn--tertiary" href="https://dramaday.net/drama/completed/" title="View all posts in Completed" rel="tag">Completed</a><a class="btn btn--small btn--tertiary" href="https://dramaday.net/drama/" title="View all posts in Drama" rel="tag">Drama</a> </div>
<div class="meta--tags btn-list meta-list">
<span class="btn btn--small btn--secondary list-head">Tags</span>
<a class="btn btn--small btn--tertiary" href="https://dramaday.net/tag/2017/" title="View all posts tagged 2017" rel="tag">2017</a><a class="btn btn--small btn--tertiary" href="https://dramaday.net/tag/20th-century-boy-and-girl/" title="View all posts tagged 20th Century Boy and Girl" rel="tag">20th Century Boy and Girl</a><a class="btn btn--small btn--tertiary" href="https://dramaday.net/tag/comedy/" title="View all posts tagged Comedy" rel="tag">Comedy</a><a class="btn btn--small btn--tertiary" href="https://dramaday.net/tag/romance/" title="View all posts tagged Romance" rel="tag">Romance</a> </div>
<hr class="separator" />
<div class="post-meta">
<div id="pixlikes" class="share-item pixlikes-box likeable" data-id="302">
<span class="like-link"><i class="icon-e-heart"></i>
<span class="likes-text">
<span class="likes-count">2</span> likes </span>
</span>
</div>
</div>
</footer><!-- .article__footer -->
<div class='yarpp yarpp-related yarpp-related-website yarpp-template-yarpp-template-post'>
<h3 class="related-posts-title">Related OST</h3>
<div class="mosaic-wrapper col-4">
<div class="mosaic">
<article class="mosaic__item article-archive article-archive--masonry has-thumbnail post-607 post type-post status-publish format-standard has-post-thumbnail hentry category-ost tag-20th-century-boy-and-girl">
<header class="article__header">
<div class="article__featured-image" style="padding-top: 100%">
<a href="https://dramaday.net/melomance-20th-century-boy-and-girl-ost-part-6/">
<img src="https://dramaday.net/wp-content/uploads/2017/11/melomance-20th-century-boy-and-girl-ost-part.6-380x380.jpg" alt="MeloMance – 20th Century Boy and Girl OST Part.6"/>
<div class="article__featured-image-meta">
<div class="flexbox">
<div class="flexbox__item">
<hr class="separator" />
<span class="read-more">Read more</span>
<hr class="separator" />
</div>
</div>
</div>
</a>
</div>
<h4 class="article__title entry-title"><a href="https://dramaday.net/melomance-20th-century-boy-and-girl-ost-part-6/" rel="bookmark">MeloMance – 20th Century Boy and Girl OST Part.6</a></h4>
</header>
<footer class="article__meta">
<span class="meta-box article__comments">
<a href="https://dramaday.net/melomance-20th-century-boy-and-girl-ost-part-6/#respond">
<i class="icon icon-comment"></i>
<span class="meta-text">
0 </span>
</a>
</span>
</footer> </article>
<article class="mosaic__item article-archive article-archive--masonry has-thumbnail post-462 post type-post status-publish format-standard has-post-thumbnail hentry category-ost tag-20th-century-boy-and-girl">
<header class="article__header">
<div class="article__featured-image" style="padding-top: 100%">
<a href="https://dramaday.net/jeon-sang-geun-20th-century-boy-and-girl-ost-part-4/">
<img src="https://dramaday.net/wp-content/uploads/2017/10/jeon-sang-geun-20th-century-boy-and-girl-ost-part.4-380x380.jpg" alt="Jeon Sang Geun – 20th Century Boy and Girl OST Part.4"/>
<div class="article__featured-image-meta">
<div class="flexbox">
<div class="flexbox__item">
<hr class="separator" />
<span class="read-more">Read more</span>
<hr class="separator" />
</div>
</div>
</div>
</a>
</div>
<h4 class="article__title entry-title"><a href="https://dramaday.net/jeon-sang-geun-20th-century-boy-and-girl-ost-part-4/" rel="bookmark">Jeon Sang Geun – 20th Century Boy and Girl OST Part.4</a></h4>
</header>
<footer class="article__meta">
<span class="meta-box article__comments">
<a href="https://dramaday.net/jeon-sang-geun-20th-century-boy-and-girl-ost-part-4/#respond">
<i class="icon icon-comment"></i>
<span class="meta-text">
0 </span>
</a>
</span>
</footer> </article>
<article class="mosaic__item article-archive article-archive--masonry has-thumbnail post-430 post type-post status-publish format-standard has-post-thumbnail hentry category-ost tag-20th-century-boy-and-girl">
<header class="article__header">
<div class="article__featured-image" style="padding-top: 100%">
<a href="https://dramaday.net/standing-egg-20th-century-boy-and-girl-ost-part-1/">
<img src="https://dramaday.net/wp-content/uploads/2017/10/standing-egg-20th-century-boy-and-girl-ost-part.1-380x380.jpg" alt="Standing Egg – 20th Century Boy and Girl OST Part.1"/>
<div class="article__featured-image-meta">
<div class="flexbox">
<div class="flexbox__item">
<hr class="separator" />
<span class="read-more">Read more</span>
<hr class="separator" />
</div>
</div>
</div>
</a>
</div>
<h4 class="article__title entry-title"><a href="https://dramaday.net/standing-egg-20th-century-boy-and-girl-ost-part-1/" rel="bookmark">Standing Egg – 20th Century Boy and Girl OST Part.1</a></h4>
</header>
<footer class="article__meta">
<span class="meta-box article__comments">
<a href="https://dramaday.net/standing-egg-20th-century-boy-and-girl-ost-part-1/#respond">
<i class="icon icon-comment"></i>
<span class="meta-text">
0 </span>
</a>
</span>
</footer> </article>
<article class="mosaic__item article-archive article-archive--masonry has-thumbnail post-437 post type-post status-publish format-standard has-post-thumbnail hentry category-ost tag-20th-century-boy-and-girl">
<header class="article__header">
<div class="article__featured-image" style="padding-top: 100%">
<a href="https://dramaday.net/golden-child-20th-century-boy-and-girl-ost-part-3/">
<img src="https://dramaday.net/wp-content/uploads/2017/10/golden-child-20th-century-boy-and-girl-ost-part.3-380x380.jpg" alt="Golden Child – 20th Century Boy and Girl OST Part.3"/>
<div class="article__featured-image-meta">
<div class="flexbox">
<div class="flexbox__item">
<hr class="separator" />
<span class="read-more">Read more</span>
<hr class="separator" />
</div>
</div>
</div>
</a>
</div>
<h4 class="article__title entry-title"><a href="https://dramaday.net/golden-child-20th-century-boy-and-girl-ost-part-3/" rel="bookmark">Golden Child – 20th Century Boy and Girl OST Part.3</a></h4>
</header>
<footer class="article__meta">
<span class="meta-box article__comments">
<a href="https://dramaday.net/golden-child-20th-century-boy-and-girl-ost-part-3/#respond">
<i class="icon icon-comment"></i>
<span class="meta-text">
0 </span>
</a>
</span>
</footer> </article>
</div><!-- .mosaic -->
</div><!-- .mosaic__wrapper -->
</div>
<div id="comments" class="comments-area no-comments">
<div class="comments-area-title">
<h3>
<span class="comment-number total">+</span> There are no comments </h3>
<a class="comments_add-comment" href="#reply-title">Add yours</a> </div>
</div><!-- #comments .comments-area -->
<div id="respond" class="comment-respond">
<h3 id="reply-title" class="comment-reply-title"> <small><a rel="nofollow" id="cancel-comment-reply-link" href="/20th-century-boy-and-girl/#respond" style="display:none;">Cancel reply</a></small></h3><form action="https://dramaday.net/wp-comments-post.php" method="post" id="commentform" class="comment-form"><p class="comment-form-comment"><label for="comment" class="show-on-ie8">Comment</label><textarea id="comment" name="comment" cols="45" rows="8" aria-required="true" placeholder="Be on topic and no requests..."></textarea></p><p class="comment-form-author"><label for="author" class="show-on-ie8">Name</label><input id="author" name="author" value="" type="text" placeholder="Name..." size="30" aria-required='true' /></p><!--
--><p class="comment-form-email"><label for="name" class="show-on-ie8">Email</label><input id="email" name="email" value="" size="30" type="text" placeholder="[email protected]..." aria-required='true' /></p><!--
--><p class="comment-form-url"><label for="url" class="show-on-ie8">Url</label><input id="url" name="url" value="" size="30" placeholder="Website... (optional)" type="text"></p>
<p class="form-submit"><input name="submit" type="submit" id="comment-submit" class="submit" value="Submit" /> <input type='hidden' name='comment_post_ID' value='302' id='comment_post_ID' />
<input type='hidden' name='comment_parent' id='comment_parent' value='0' />
</p><!-- Anti-spam plugin wordpress.org/plugins/anti-spam/ --><div class="wantispam-required-fields"><input type="hidden" name="wantispam_t" class="wantispam-control wantispam-control-t" value="1665644556" /><div class="wantispam-group wantispam-group-q" style="clear: both;">
<label>Current ye@r <span class="required">*</span></label>
<input type="hidden" name="wantispam_a" class="wantispam-control wantispam-control-a" value="2022" />
<input type="text" name="wantispam_q" class="wantispam-control wantispam-control-q" value="7.3.0" autocomplete="off" />
</div>
<div class="wantispam-group wantispam-group-e" style="display: none;">
<label>Leave this field empty</label>
<input type="text" name="wantispam_e_email_url_website" class="wantispam-control wantispam-control-e" value="" autocomplete="off" />
</div>
</div><!--\End Anti-spam plugin --></form> </div><!-- #respond -->
</article>
</div><!-- .page-content__wrapper --> </div>
<aside class="sidebar sidebar--main">
<div id="mw_lastupdated_widget-2" class="widget widget--sidebar-blog mw_lastupdated"><h3 class="widget__title widget--sidebar-blog__title">last updated</h3><ul> <li class="clear">
<a href="https://dramaday.net/roommates-of-poongduck-304/">
Roommates of Poongduck 304 </a>
<time class="mw_lastupdated_time" datetime="2022-10-13 10:50:26">
Oct 13, 2022 </time>
</li>
<li class="clear">
<a href="https://dramaday.net/love-is-for-suckers/">
Love is for Suckers </a>
<time class="mw_lastupdated_time" datetime="2022-10-13 03:50:11">
Oct 13, 2022 </time>
</li>
<li class="clear">
<a href="https://dramaday.net/bad-prosecutor/">
Bad Prosecutor </a>
<time class="mw_lastupdated_time" datetime="2022-10-13 03:06:07">
Oct 13, 2022 </time>
</li>
<li class="clear">
<a href="https://dramaday.net/love-in-contract/">
Love in Contract </a>
<time class="mw_lastupdated_time" datetime="2022-10-13 02:17:43">
Oct 13, 2022 </time>
</li>
<li class="clear">
<a href="https://dramaday.net/street-man-fighter/">
Street Man Fighter </a>
<time class="mw_lastupdated_time" datetime="2022-10-12 21:20:27">
Oct 12, 2022 </time>
</li>
<li class="clear">
<a href="https://dramaday.net/seasons-of-blossom/">
Seasons of Blossom </a>
<time class="mw_lastupdated_time" datetime="2022-10-12 21:15:35">
Oct 12, 2022 </time>
</li>
<li class="clear">
<a href="https://dramaday.net/pink-lie/">
Pink Lie </a>
<time class="mw_lastupdated_time" datetime="2022-10-12 16:31:02">
Oct 12, 2022 </time>
</li>
<li class="clear">
<a href="https://dramaday.net/may-it-please-the-court/">
May It Please the Court </a>
<time class="mw_lastupdated_time" datetime="2022-10-12 15:46:30">
Oct 12, 2022 </time>
</li>
<li class="clear">
<a href="https://dramaday.net/jinx/">
Jinx </a>
<time class="mw_lastupdated_time" datetime="2022-10-12 14:43:56">
Oct 12, 2022 </time>
</li>
</ul></div><div id="pe_recent_posts-2" class="widget widget--sidebar-blog PE_Recent_Posts"><h3 class="widget__title widget--sidebar-blog__title">Recently Added OST</h3> <div id="myCarousel-pe_recent_posts-2" data-keyboard="false" class="pe-recent-posts-outer carousel slide one-row-mobile-off columns-2 even-items-in-row" style="margin-left: -15px;">
<div class="pe-carousel-navigation-container left-right">
<a class="carousel-control left" role="button" aria-controls="pe_recent_posts-2-container" aria-label="Previous Slide" role="button" href="#myCarousel-pe_recent_posts-2" data-slide="prev"><i class="fa fa-chevron-left fa-2" aria-hidden="true"><span class="sr-only">Previous</span></i></a>
<a class="carousel-control right" role="button" aria-controls="pe_recent_posts-2-container" aria-label="Next Slide" href="#myCarousel-pe_recent_posts-2" data-slide="next"><i class="fa fa-chevron-right fa-2" aria-hidden="true"><span class="sr-only">Next</span></i></a>
</div>
<div class="carousel-inner image-left" style="margin-bottom: -15px;" id="pe_recent_posts-2-container" aria-live="off">
<div class="item active clearfix el-in-row-2" id="pe_recent_posts-2-tab-1" aria-roledescription="slide" aria-label="1 of 5" tabindex="0">
<ul class="thumbnails el-1 el-in-row-1" style="width: 50%;">
<li>
<div class="thumbnail-box" style="padding-left: 15px; padding-bottom: 15px;">
<div class="thumbnail-box-in clearfix">
<a href="https://dramaday.net/%ec%a1%b0%ec%98%81%ec%9a%b1%ea%b3%bc-the-soundtrackings-decision-to-leave/">
<img width="150" height="150" src="https://dramaday.net/wp-content/uploads/2022/10/decision-to-leave-ost-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="Decision to Leave OST" loading="lazy" srcset="https://dramaday.net/wp-content/uploads/2022/10/decision-to-leave-ost-150x150.jpg 150w, https://dramaday.net/wp-content/uploads/2022/10/decision-to-leave-ost-300x300.jpg 300w, https://dramaday.net/wp-content/uploads/2022/10/decision-to-leave-ost-120x120.jpg 120w, https://dramaday.net/wp-content/uploads/2022/10/decision-to-leave-ost.jpg 500w" sizes="(max-width: 150px) 99vw, 150px" /> </a>
<div class="caption fadeInUp animated image-on">
<h6 class="pe-recent-posts-title-tag">
<a href="https://dramaday.net/%ec%a1%b0%ec%98%81%ec%9a%b1%ea%b3%bc-the-soundtrackings-decision-to-leave/">
조영욱과 THE SOUNDTRACKINGS – Decision to Leave OST </a>
</h6>
<div class="excerpt-text"></div> </div>
</div>
</div>
</li>
</ul>
<ul class="thumbnails el-2 el-in-row-2" style="width: 50%;">
<li>
<div class="thumbnail-box" style="padding-left: 15px; padding-bottom: 15px;">
<div class="thumbnail-box-in clearfix">
<a href="https://dramaday.net/xia-jinx-ost/">
<img width="150" height="150" src="https://dramaday.net/wp-content/uploads/2022/10/jinx-ost-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="Jinx OST" loading="lazy" srcset="https://dramaday.net/wp-content/uploads/2022/10/jinx-ost-150x150.jpg 150w, https://dramaday.net/wp-content/uploads/2022/10/jinx-ost-300x300.jpg 300w, https://dramaday.net/wp-content/uploads/2022/10/jinx-ost-120x120.jpg 120w, https://dramaday.net/wp-content/uploads/2022/10/jinx-ost.jpg 500w" sizes="(max-width: 150px) 99vw, 150px" /> </a>
<div class="caption fadeInUp animated image-on">
<h6 class="pe-recent-posts-title-tag">
<a href="https://dramaday.net/xia-jinx-ost/">
XIA – Jinx OST </a>
</h6>
<div class="excerpt-text"></div> </div>
</div>
</div>
</li>
</ul>
</div>
<div class="item clearfix el-in-row-2" id="pe_recent_posts-2-tab-3" aria-roledescription="slide" aria-label="2 of 5" tabindex="0">
<ul class="thumbnails el-3 el-in-row-1" style="width: 50%;">
<li>
<div class="thumbnail-box" style="padding-left: 15px; padding-bottom: 15px;">
<div class="thumbnail-box-in clearfix">
<a href="https://dramaday.net/cheon-ji-won-seasons-of-blossom-seasons-of-blossom-ost/">
<img width="150" height="150" src="https://dramaday.net/wp-content/uploads/2022/10/seasons-of-blossom-pt.2-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="Seasons of Blossom (Seasons of Blossom OST)" loading="lazy" srcset="https://dramaday.net/wp-content/uploads/2022/10/seasons-of-blossom-pt.2-150x150.jpg 150w, https://dramaday.net/wp-content/uploads/2022/10/seasons-of-blossom-pt.2-300x300.jpg 300w, https://dramaday.net/wp-content/uploads/2022/10/seasons-of-blossom-pt.2-120x120.jpg 120w, https://dramaday.net/wp-content/uploads/2022/10/seasons-of-blossom-pt.2.jpg 500w" sizes="(max-width: 150px) 99vw, 150px" /> </a>
<div class="caption fadeInUp animated image-on">
<h6 class="pe-recent-posts-title-tag">
<a href="https://dramaday.net/cheon-ji-won-seasons-of-blossom-seasons-of-blossom-ost/">
Cheon Ji Won – Seasons of Blossom (Seasons of Blossom OST) </a>
</h6>
<div class="excerpt-text"></div> </div>
</div>
</div>
</li>
</ul>
<ul class="thumbnails el-4 el-in-row-2" style="width: 50%;">
<li>
<div class="thumbnail-box" style="padding-left: 15px; padding-bottom: 15px;">
<div class="thumbnail-box-in clearfix">
<a href="https://dramaday.net/various-artists-may-it-please-the-court-ost/">
<img width="150" height="150" src="https://dramaday.net/wp-content/uploads/2022/10/may-it-please-the-court-ost-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="May It Please the Court OST" loading="lazy" srcset="https://dramaday.net/wp-content/uploads/2022/10/may-it-please-the-court-ost-150x150.jpg 150w, https://dramaday.net/wp-content/uploads/2022/10/may-it-please-the-court-ost-300x300.jpg 300w, https://dramaday.net/wp-content/uploads/2022/10/may-it-please-the-court-ost-120x120.jpg 120w, https://dramaday.net/wp-content/uploads/2022/10/may-it-please-the-court-ost.jpg 500w" sizes="(max-width: 150px) 99vw, 150px" /> </a>
<div class="caption fadeInUp animated image-on">
<h6 class="pe-recent-posts-title-tag">
<a href="https://dramaday.net/various-artists-may-it-please-the-court-ost/">
Various Artists – May It Please the Court OST </a>
</h6>
<div class="excerpt-text"></div> </div>
</div>
</div>
</li>
</ul>
</div>
<div class="item clearfix el-in-row-2" id="pe_recent_posts-2-tab-5" aria-roledescription="slide" aria-label="3 of 5" tabindex="0">
<ul class="thumbnails el-5 el-in-row-1" style="width: 50%;">
<li>
<div class="thumbnail-box" style="padding-left: 15px; padding-bottom: 15px;">
<div class="thumbnail-box-in clearfix">
<a href="https://dramaday.net/lee-ju-hyuk-the-law-cafe-ost-part-9/">
<img width="150" height="150" src="https://dramaday.net/wp-content/uploads/2022/10/the-law-cafe-ost-part.9-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="The Law Cafe OST Part.9" loading="lazy" srcset="https://dramaday.net/wp-content/uploads/2022/10/the-law-cafe-ost-part.9-150x150.jpg 150w, https://dramaday.net/wp-content/uploads/2022/10/the-law-cafe-ost-part.9-300x300.jpg 300w, https://dramaday.net/wp-content/uploads/2022/10/the-law-cafe-ost-part.9-120x120.jpg 120w, https://dramaday.net/wp-content/uploads/2022/10/the-law-cafe-ost-part.9.jpg 500w" sizes="(max-width: 150px) 99vw, 150px" /> </a>
<div class="caption fadeInUp animated image-on">
<h6 class="pe-recent-posts-title-tag">
<a href="https://dramaday.net/lee-ju-hyuk-the-law-cafe-ost-part-9/">
Lee Ju Hyuk – The Law Cafe OST Part.9 </a>
</h6>
<div class="excerpt-text"></div> </div>
</div>
</div>
</li>
</ul>
<ul class="thumbnails el-6 el-in-row-2" style="width: 50%;">
<li>
<div class="thumbnail-box" style="padding-left: 15px; padding-bottom: 15px;">
<div class="thumbnail-box-in clearfix">
<a href="https://dramaday.net/min-kyung-hoon-mental-coach-jegal-ost-part-4/">
<img width="150" height="150" src="https://dramaday.net/wp-content/uploads/2022/10/mental-coach-jegal-ost-part.4-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="Mental Coach Jegal OST Part.4" loading="lazy" srcset="https://dramaday.net/wp-content/uploads/2022/10/mental-coach-jegal-ost-part.4-150x150.jpg 150w, https://dramaday.net/wp-content/uploads/2022/10/mental-coach-jegal-ost-part.4-300x300.jpg 300w, https://dramaday.net/wp-content/uploads/2022/10/mental-coach-jegal-ost-part.4-120x120.jpg 120w, https://dramaday.net/wp-content/uploads/2022/10/mental-coach-jegal-ost-part.4.jpg 500w" sizes="(max-width: 150px) 99vw, 150px" /> </a>
<div class="caption fadeInUp animated image-on">
<h6 class="pe-recent-posts-title-tag">
<a href="https://dramaday.net/min-kyung-hoon-mental-coach-jegal-ost-part-4/">
Min Kyung Hoon – Mental Coach Jegal OST Part.4 </a>
</h6>
<div class="excerpt-text"></div> </div>
</div>
</div>
</li>
</ul>
</div>
<div class="item clearfix el-in-row-2" id="pe_recent_posts-2-tab-7" aria-roledescription="slide" aria-label="4 of 5" tabindex="0">
<ul class="thumbnails el-7 el-in-row-1" style="width: 50%;">
<li>
<div class="thumbnail-box" style="padding-left: 15px; padding-bottom: 15px;">
<div class="thumbnail-box-in clearfix">
<a href="https://dramaday.net/sam-kim-cheer-up-ost-part-2/">
<img width="150" height="150" src="https://dramaday.net/wp-content/uploads/2022/10/cheer-up-ost-part.2-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="Cheer Up OST Part.2" loading="lazy" srcset="https://dramaday.net/wp-content/uploads/2022/10/cheer-up-ost-part.2-150x150.jpg 150w, https://dramaday.net/wp-content/uploads/2022/10/cheer-up-ost-part.2-300x300.jpg 300w, https://dramaday.net/wp-content/uploads/2022/10/cheer-up-ost-part.2-120x120.jpg 120w, https://dramaday.net/wp-content/uploads/2022/10/cheer-up-ost-part.2.jpg 500w" sizes="(max-width: 150px) 99vw, 150px" /> </a>
<div class="caption fadeInUp animated image-on">
<h6 class="pe-recent-posts-title-tag">
<a href="https://dramaday.net/sam-kim-cheer-up-ost-part-2/">
Sam Kim – Cheer Up OST Part.2 </a>
</h6>
<div class="excerpt-text"></div> </div>
</div>
</div>
</li>
</ul>
<ul class="thumbnails el-8 el-in-row-2" style="width: 50%;">
<li>
<div class="thumbnail-box" style="padding-left: 15px; padding-bottom: 15px;">
<div class="thumbnail-box-in clearfix">
<a href="https://dramaday.net/sunwoo-jung-a-the-law-cafe-ost-part-8/">
<img width="150" height="150" src="https://dramaday.net/wp-content/uploads/2022/10/the-law-cafe-ost-part.8-150x150.jpg" class="attachment-thumbnail size-thumbnail wp-post-image" alt="The Law Cafe OST Part.8" loading="lazy" srcset="https://dramaday.net/wp-content/uploads/2022/10/the-law-cafe-ost-part.8-150x150.jpg 150w, https://dramaday.net/wp-content/uploads/2022/10/the-law-cafe-ost-part.8-300x300.jpg 300w, https://dramaday.net/wp-content/uploads/2022/10/the-law-cafe-ost-part.8-120x120.jpg 120w, https://dramaday.net/wp-content/uploads/2022/10/the-law-cafe-ost-part.8.jpg 500w" sizes="(max-width: 150px) 99vw, 150px" /> </a>
<div class="caption fadeInUp animated image-on">
<h6 class="pe-recent-posts-title-tag">
<a href="https://dramaday.net/sunwoo-jung-a-the-law-cafe-ost-part-8/">
Sunwoo Jung-A – The Law Cafe OST Part.8 </a>
</h6>
<div class="excerpt-text"></div> </div>
</div>
</div>
</li>
</ul>
</div>
</div>
</div>
</div> <script>
jQuery(document).ready(
function($) {
const peRecentPostscarouselContainer = $('#pe_recent_posts-2 .pe-recent-posts-outer');
const peRecentPostsArrows = $('#pe_recent_posts-2 .pe-recent-posts-outer .pe-carousel-navigation-container');
const peRecentPostsArrow = $('#pe_recent_posts-2 .pe-recent-posts-outer .pe-carousel-navigation-container .carousel-control');
const peRecentPostsIndicatorsContainer = $('#pe_recent_posts-2 .carousel-indicators');
const peRecentPostsIndicators = $('#pe_recent_posts-2 .carousel-indicators li');
const peRecentPostsPanel = $('#pe_recent_posts-2 .carousel-inner > .item');
peRecentPostscarouselContainer.carousel({
interval: 5000,
pause: "hover"
})
$('#pe_recent_posts-2 ol.carousel-indicators li:first-child').attr('aria-selected', 'true');
peRecentPostsArrow.on('keydown', function(event) {
if (event.which == 32) { // Space key
event.preventDefault();
$(this).click();
}
});
peRecentPostsIndicators.on('keydown', function(event) {
$(this).parent().children().attr('aria-selected', 'false');
$('#pe_recent_posts-2 ol.carousel-indicators li:first-child').attr('aria-selected', 'true');
if (event.which == 9) { // Tab key