-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
967 lines (895 loc) · 37.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
<!DOCTYPE html>
<html lang="zxx">
<head>
<!-- Required meta tags -->
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>NetBug</title>
<!-- plugin css for this page -->
<link
rel="stylesheet"
href="./assets/vendors/mdi/css/materialdesignicons.min.css"
/>
<link rel="stylesheet" href="./assets/vendors/aos/dist/aos.css/aos.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link
rel="stylesheet"
href="./assets/vendors/owl.carousel/dist/assets/owl.carousel.min.css"
/>
<link
rel="stylesheet"
href="./assets/vendors/owl.carousel/dist/assets/owl.theme.default.min.css"
/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.3/css/all.css" integrity="sha384-SZXxX4whJ79/gErwcOYf+zWLeJdY/qpuqC4cAa9rOGUstPomtqpuNWT9wdPEn2fk" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/css/login.css">
<!-- TOASTER CSS -->
<link href="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.1/css/toastr.css" rel="stylesheet"/>
>
<!-- DataTable CSS -->
<link href="./assets/css/dataTables/dataTables.bootstrap.css" rel="stylesheet">
<link href="./assets/css/dataTables/dataTables.responsive.css" rel="stylesheet">
<!-- SPAPP CSS -->
<link rel="stylesheet" href="./assets/css/jQuerySPApp.css" />
<!-- End plugin css for this page -->
<link rel="shortcut icon" href="assets/images/favicon.png" />
<!-- inject:css -->
<link rel="stylesheet" href="assets/css/style.css">
<!-- endinject -->
</head>
<body>
<div class="container-scroller">
<div class="main-panel">
<header id="header">
<div class="container">
<!-- partial:partials/_navbar.html -->
<nav class="navbar navbar-expand-lg navbar-light">
<div class="d-flex justify-content-between align-items-center navbar-top">
<ul class="navbar-left">
</ul>
<div>
<a class="navbar-brand" href="#"
><img src="assets/images/logo.svg" alt=""
/></a>
</div>
<div class="d-flex">
<ul class="navbar-right">
</ul>
</div>
</div>
<div class="navbar-bottom-menu">
<button
class="navbar-toggler"
type="button"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div
class="navbar-collapse justify-content-center collapse"
id="navbarSupportedContent"
>
<ul
class="navbar-nav d-lg-flex justify-content-between align-items-center"
>
<li>
<button class="navbar-close">
<i class="mdi mdi-close"></i>
</button>
</li>
<li class="nav-item active">
<a class="nav-link active" href="#main_page">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#world">World</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#sports">Sports</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#business">Business</a>
</li>
<li class="nav-item admin">
<a class="nav-link" href="#admin">Admin</a>
</li>
<li class="nav-item">
<a onclick="doLogout()" class="nav-link">Logout</a>
</li>
<li class="nav-item">
<div class="input-group rounded">
<input id="search" type="search" class="form-control rounded" placeholder="Search" aria-label="Search" aria-describedby="search-addon" />
<button type="button" class="btn btn-outline-primary" onclick="doSearch()">search</button>
</div>
</li>
</ul>
</div>
</div>
</nav>
<!-- partial -->
</div>
</header>
<!--<div class="container">
<div class="banner-top-thumb-wrap">
<div class="d-lg-flex justify-content-between align-items-center">
<div class="d-flex justify-content-between mb-3 mb-lg-0">
<div>
<img
src="assets/images/dashboard/star-magazine-1.jpg"
alt="thumb"
class="banner-top-thumb"
/>
</div>
<h5 class="m-0 font-weight-bold">
The morning after: What people
</h5>
</div>
<div class="d-flex justify-content-between mb-3 mb-lg-0">
<div>
<img
src="assets/images/dashboard/star-magazine-2.jpg"
alt="thumb"
class="banner-top-thumb"
/>
</div>
<h5 class="m-0 font-weight-bold">How Hungary produced the</h5>
</div>
<div class="d-flex justify-content-between mb-3 mb-lg-0">
<div>
<img
src="assets/images/dashboard/star-magazine-3.jpg"
alt="thumb"
class="banner-top-thumb"
/>
</div>
<h5 class="m-0 font-weight-bold">
A sleepy island paradise's most
</h5>
</div>
<div class="d-flex justify-content-between mb-3 mb-lg-0">
<div>
<img
src="assets/images/dashboard/star-magazine-4.jpg"
alt="thumb"
class="banner-top-thumb"
/>
</div>
<h5 class="m-0 font-weight-bold">
America's most popular national
</h5>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-8">
<div class="owl-carousel owl-theme" id="main-banner-carousel">
<div class="item">
<div class="carousel-content-wrapper mb-2">
<div class="carousel-content">
<h1 class="font-weight-bold">
If you wanted to get rich, how would you do it?
</h1>
<h5 class="font-weight-normal m-0">
Lorem Ipsum has been the industry's standard
</h5>
<p class="text-color m-0 pt-2 d-flex align-items-center">
<span class="fs-10 mr-1">2 hours ago</span>
<i class="mdi mdi-bookmark-outline mr-3"></i>
<span class="fs-10 mr-1">126</span>
<i class="mdi mdi-comment-outline"></i>
</p>
</div>
<div class="carousel-image">
<img src="assets/images/dashboard/banner.jpg" alt="" />
</div>
</div>
</div>
<div class="item">
<div class="carousel-content-wrapper mb-2">
<div class="carousel-content">
<h1 class="font-weight-bold">
If you wanted to get rich, how would you do it?
</h1>
<h5 class="font-weight-normal m-0">
Lorem Ipsum has been the industry's standard
</h5>
<p class="text-color m-0 pt-2 d-flex align-items-center">
<span class="fs-10 mr-1">2 hours ago</span>
<i class="mdi mdi-bookmark-outline mr-3"></i>
<span class="fs-10 mr-1">126</span>
<i class="mdi mdi-comment-outline"></i>
</p>
</div>
<div class="carousel-image">
<img src="assets/images/dashboard/banner_1.jpg" alt="" />
</div>
</div>
</div>
<div class="item">
<div class="carousel-content-wrapper mb-2">
<div class="carousel-content">
<h1 class="font-weight-bold">
If you wanted to get rich, how would you do it?
</h1>
<h5 class="font-weight-normal m-0">
Lorem Ipsum has been the industry's standard
</h5>
<p class="text-color m-0 pt-2 d-flex align-items-center">
<span class="fs-10 mr-1">2 hours ago</span>
<i class="mdi mdi-bookmark-outline mr-3"></i>
<span class="fs-10 mr-1">126</span>
<i class="mdi mdi-comment-outline"></i>
</p>
</div>
<div class="carousel-image">
<img src="assets/images/dashboard/banner_2.jpg" alt="" />
</div>
</div>
</div>
<div class="item">
<div class="carousel-content-wrapper mb-2">
<div class="carousel-content">
<h1 class="font-weight-bold">
If you wanted to get rich, how would you do it?
</h1>
<h5 class="font-weight-normal m-0">
Lorem Ipsum has been the industry's standard
</h5>
<p class="text-color m-0 pt-2 d-flex align-items-center">
<span class="fs-10 mr-1">2 hours ago</span>
<i class="mdi mdi-bookmark-outline mr-3"></i>
<span class="fs-10 mr-1">126</span>
<i class="mdi mdi-comment-outline"></i>
</p>
</div>
<div class="carousel-image">
<img src="assets/images/dashboard/banner_3.jpg" alt="" />
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="row">
<div class="col-sm-6">
<div class="py-3 border-bottom">
<div class="d-flex align-items-center pb-2">
<img
src="assets/images/dashboard/Profile_1.jpg"
class="img-xs img-rounded mr-2"
alt="thumb"
/>
<span class="fs-12 text-muted">Henry Itondo</span>
</div>
<p class="fs-14 m-0 font-weight-medium line-height-sm">
The Most And Least Visited Countries In The World
</p>
</div>
</div>
<div class="col-sm-6">
<div class="py-3 border-bottom">
<div class="d-flex align-items-center pb-2">
<img
src="assets/images/dashboard/Profile_2.jpg"
class="img-xs img-rounded mr-2"
alt="thumb"
/>
<span class="fs-12 text-muted">Oka Tomoaki</span>
</div>
<p class="fs-14 m-0 font-weight-medium line-height-sm">
The Best Places to Travel in month August
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div class="pt-4 pb-4 border-bottom">
<div class="d-flex align-items-center pb-2">
<img
src="assets/images/dashboard/Profile_2.jpg"
class="img-xs img-rounded mr-2"
alt="thumb"
/>
<span class="fs-12 text-muted">Joana Leite</span>
</div>
<p class="fs-14 m-0 font-weight-medium line-height-sm">
Focus On Fun And Challenging Lifetime Activities
</p>
</div>
</div>
<div class="col-sm-6">
<div class="pt-3 pb-4 border-bottom">
<div class="d-flex align-items-center pb-2">
<img
src="assets/images/dashboard/Profile_4.jpg"
class="img-xs img-rounded mr-2"
alt="thumb"
/>
<span class="fs-12 text-muted">Rita Leite</span>
</div>
<p class="fs-14 m-0 font-weight-medium line-height-sm">
Bread Is The Most Widely Consumed Food In The World
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-6">
<div class="pt-4 pb-4">
<div class="d-flex align-items-center pb-2">
<img
src="assets/images/dashboard/Profile_5.jpg"
class="img-xs img-rounded mr-2"
alt="thumb"
/>
<span class="fs-12 text-muted">Jurrien Oldhof</span>
</div>
<p class="fs-14 m-0 font-weight-medium line-height-sm">
What Is Music, And What Does It Mean To Us
</p>
</div>
</div>
<div class="col-sm-6">
<div class="pt-3 pb-4">
<div class="d-flex align-items-center pb-2">
<img
src="assets/images/dashboard/Profile_6.jpg"
class="img-xs img-rounded mr-2"
alt="thumb"
/>
<span class="fs-12 text-muted">Yamaha Toshinobu</span>
</div>
<p class="fs-14 m-0 font-weight-medium line-height-sm">
Is Breakfast The Most Important Meal Of The Day
</p>
</div>
</div>
</div>
</div>
</div>
<div class="world-news">
<div class="row">
<div class="col-sm-12">
<div class="d-flex position-relative float-left">
<h3 class="section-title">World News</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-sm-6 grid-margin mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/travel.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">TRAVEL</span>
</div>
<h5 class="font-weight-bold mt-3">
Refugees flood Turkey's border with Greece
</h5>
<p class="fs-15 font-weight-normal">
Lorem Ipsum has been the industry's standard dummy text
</p>
<a href="#" class="font-weight-bold text-dark pt-2"
>Read Article</a
>
</div>
<div class="col-lg-3 col-sm-6 mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/news.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">NEWS</span>
</div>
<h5 class="font-weight-bold mt-3">
South Korea’s Moon Jae-in sworn in vowing address
</h5>
<p class="fs-15 font-weight-normal">
Lorem Ipsum has been the industry's standard dummy text
</p>
<a href="#" class="font-weight-bold text-dark pt-2"
>Read Article</a
>
</div>
<div class="col-lg-3 col-sm-6 mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/art.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">ART</span>
</div>
<h5 class="font-weight-bold mt-3">
These puppies are training to assist in avalanche rescue
</h5>
<p class="fs-15 font-weight-normal">
Lorem Ipsum has been the industry's standard dummy text
</p>
<a href="#" class="font-weight-bold text-dark pt-2"
>Read Article</a
>
</div>
<div class="col-lg-3 col-sm-6 mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/business.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">BUSINESS</span>
</div>
<h5 class="font-weight-bold mt-3">
'Love Is Blind' couple opens up about their first year
</h5>
<p class="fs-15 font-weight-normal">
Lorem Ipsum has been the industry's standard dummy text
</p>
<a href="#" class="font-weight-bold text-dark pt-2"
>Read Article</a
>
</div>
</div>
</div>
<div class="editors-news">
<div class="row">
<div class="col-lg-3">
<div class="d-flex position-relative float-left">
<h3 class="section-title">Popular News</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-6 mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/glob.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">NEWS</span>
</div>
<h1 class="font-weight-600 mt-3">
Melania Trump speaks about courage at State Department
</h1>
<p class="fs-15 font-weight-normal">
Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type
and
</p>
</div>
<div class="col-lg-6 mb-5 mb-sm-2">
<div class="row">
<div class="col-sm-6 mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/star-magazine-5.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">POLITICS</span>
</div>
<h5 class="font-weight-600 mt-3">
A look at California's eerie plane graveyards
</h5>
<p class="fs-15 font-weight-normal">
Lorem Ipsum has been the industry's standard dummy text
</p>
</div>
<div class="col-sm-6 mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/star-magazine-6.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">TRAVEL</span>
</div>
<h5 class="font-weight-600 mt-3">
The world's most beautiful racecourses
</h5>
<p class="fs-15 font-weight-normal">
Lorem Ipsum has been the industry's standard dummy text
</p>
</div>
</div>
<div class="row mt-3">
<div class="col-sm-6 mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/star-magazine-7.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">POLITICS</span>
</div>
<h5 class="font-weight-600 mt-3">
Japan cancels cherry blossom festivals over virus fears
</h5>
<p class="fs-15 font-weight-normal">
Lorem Ipsum has been the industry's standard dummy text
</p>
</div>
<div class="col-sm-6">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/star-magazine-8.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">TRAVEL</span>
</div>
<h5 class="font-weight-600 mt-3">
Classic cars reborn as electric vehicles
</h5>
<p class="fs-15 font-weight-normal">
Lorem Ipsum has been the industry's standard dummy text
</p>
</div>
</div>
</div>
</div>
</div>
<div class="popular-news">
<div class="row">
<div class="col-lg-3">
<div class="d-flex position-relative float-left">
<h3 class="section-title">Editor choice</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-9">
<div class="row">
<div class="col-sm-4 mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/star-magazine-9.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">LIFESTYLE</span>
</div>
<h5 class="font-weight-600 mt-3">
The island country that gave Mayor Pete his name
</h5>
</div>
<div class="col-sm-4 mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/star-magazine-10.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">SPORTS</span>
</div>
<h5 class="font-weight-600 mt-3">
Disney parks expand (good) vegan food options
</h5>
</div>
<div class="col-sm-4 mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/star-magazine-11.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">INTERNET</span>
</div>
<h5 class="font-weight-600 mt-3">
A hot springs where clothing is optional after dark
</h5>
</div>
</div>
<div class="row mt-3">
<div class="col-sm-4 mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/star-magazine-12.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">NEWS</span>
</div>
<h5 class="font-weight-600 mt-3">
Japanese chef carves food into incredible pieces of art
</h5>
</div>
<div class="col-sm-4 mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/star-magazine-13.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">NEWS</span>
</div>
<h5 class="font-weight-600 mt-3">
The Misanthrope Society: A Taipei bar for people who
</h5>
</div>
<div class="col-sm-4 mb-5 mb-sm-2">
<div class="position-relative image-hover">
<img
src="assets/images/dashboard/star-magazine-14.jpg"
class="img-fluid"
alt="world-news"
/>
<span class="thumb-title">TOURISM</span>
</div>
<h5 class="font-weight-600 mt-3">
From Pakistan to the Caribbean: Curry's journey
</h5>
</div>
</div>
</div>
<div class="col-lg-3">
<div class="position-relative mb-3">
<img
src="assets/images/dashboard/star-magazine-15.jpg"
class="img-fluid"
alt="world-news"
/>
<div class="video-thumb text-muted">
<span><i class="mdi mdi-menu-right"></i></span>LIVE
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="d-flex position-relative float-left">
<h3 class="section-title">Latest News</h3>
</div>
</div>
<div class="col-sm-12">
<div class="border-bottom pb-3">
<h5 class="font-weight-600 mt-0 mb-0">
South Korea’s Moon Jae-in sworn in vowing address
</h5>
<p class="text-color m-0 d-flex align-items-center">
<span class="fs-10 mr-1">2 hours ago</span>
<i class="mdi mdi-bookmark-outline mr-3"></i>
<span class="fs-10 mr-1">126</span>
<i class="mdi mdi-comment-outline"></i>
</p>
</div>
</div>
<div class="col-sm-12">
<div class="border-bottom pt-4 pb-3">
<h5 class="font-weight-600 mt-0 mb-0">
South Korea’s Moon Jae-in sworn in vowing address
</h5>
<p class="text-color m-0 d-flex align-items-center">
<span class="fs-10 mr-1">2 hours ago</span>
<i class="mdi mdi-bookmark-outline mr-3"></i>
<span class="fs-10 mr-1">126</span>
<i class="mdi mdi-comment-outline"></i>
</p>
</div>
</div>
<div class="col-sm-12">
<div class="border-bottom pt-4 pb-3">
<h5 class="font-weight-600 mt-0 mb-0">
South Korea’s Moon Jae-in sworn in vowing address
</h5>
<p class="text-color m-0 d-flex align-items-center">
<span class="fs-10 mr-1">2 hours ago</span>
<i class="mdi mdi-bookmark-outline mr-3"></i>
<span class="fs-10 mr-1">126</span>
<i class="mdi mdi-comment-outline"></i>
</p>
</div>
</div>
<div class="col-sm-12">
<div class="pt-4">
<h5 class="font-weight-600 mt-0 mb-0">
South Korea’s Moon Jae-in sworn in vowing address
</h5>
<p class="text-color m-0 d-flex align-items-center">
<span class="fs-10 mr-1">2 hours ago</span>
<i class="mdi mdi-bookmark-outline mr-3"></i>
<span class="fs-10 mr-1">126</span>
<i class="mdi mdi-comment-outline"></i>
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>-->
<main id="jqueryspapp" role="main">
<section id="main_page" data-load="main_page.html" ></section>
<section id="news_post" data-load="news_post.html"></section>
<section id="world" data-load="world.html" ></section>
<section id="sports" data-load="sports.html"></section>
<section id="business" data-load="business.html" ></section>
<section id="search_page" data-load="search_page.html" ></section>
<section class="admin" id="admin" data-load="admin.html" ></section>
<section class="admin" id="admin-article" data-load="admin-article.html" ></section>
<section class="admin" id="admin-images" data-load="admin-images.html" ></section>
<section class="admin" id="admin-tags" data-load="admin-tags.html" ></section>
<section id="404" data-load="404.html"></section>
</main>
<!-- main-panel ends -->
<!-- container-scroller ends -->
<!-- partial:partials/_footer.html -->
<footer>
<div class="container">
<div class="row">
<div class="col-sm-12">
</div>
<div class="col-sm-3 col-lg-3">
</div>
<div class="col-sm-3 col-lg-3">
</div>
<div class="col-sm-3 col-lg-3">
</div>
<div class="col-sm-3 col-lg-3">
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div class="d-flex justify-content-between">
<img src="assets/images/logo.svg" class="footer-logo" alt="" />
<div class="d-flex justify-content-end footer-social">
<h5 class="m-0 font-weight-600 mr-3 d-none d-lg-flex">Follow on</h5>
<ul class="social-media">
<li>
<a href="#">
<i class="mdi mdi-instagram"></i>
</a>
</li>
<li>
<a href="#">
<i class="mdi mdi-facebook"></i>
</a>
</li>
<li>
<a href="#">
<i class="mdi mdi-youtube"></i>
</a>
</li>
<li>
<a href="#">
<i class="mdi mdi-linkedin"></i>
</a>
</li>
<li>
<a href="#">
<i class="mdi mdi-twitter"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-sm-12">
<div
class="d-lg-flex justify-content-between align-items-center border-top mt-5 footer-bottom"
>
<ul class="footer-horizontal-menu">
<li><a href="#">Terms of Use.</a></li>
<li><a href="#">Privacy Policy.</a></li>
<li><a href="#">Accessibility & CC.</a></li>
<li><a href="#">AdChoices.</a></li>
<li><a href="#">Advertise with us Transcripts.</a></li>
<li><a href="#">License.</a></li>
<li><a href="#">Sitemap</a></li>
</ul>
<p class="font-weight-medium">
© 2020 <a href="https://www.bootstrapdash.com/" target="_blank" class="text-dark">@ BootstrapDash</a>, Inc.All Rights Reserved.
</p>
</div>
</div>
</div>
</div>
</footer>
<!-- partial -->
</div>
</div>
<!-- inject:js -->
<script src="assets/vendors/js/vendor.bundle.base.js"></script>
<!-- endinject -->
<!-- plugin js for this page -->
<script src="./assets/vendors/owl.carousel/dist/owl.carousel.min.js"></script>
<!-- End plugin js for this page -->
<!-- Custom js for this page-->
<script src="./assets/js/demo.js"></script>
<!-- adding SPASS JS-->
<script src="https://code.jquery.com/jquery-3.6.0.min.js" integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
<script src="assets/js/jQuerySPApp.js"></script>
<script src="assets/js/utils.js"></script>
<script src="https://cdn.jsdelivr.net/npm/jquery-validation@1.19.3/dist/jquery.validate.min.js"></script>
<script src="./assets/js/dataTables/jquery.dataTables.min.js"></script>
<script src="./assets/js/dataTables/dataTables.bootstrap.min.js"></script>
<script src="https://cdn.datatables.net/responsive/2.2.7/js/dataTables.responsive.min.js"></script>
<!-- End custom js for this page-->
<script src="https://cdnjs.cloudflare.com/ajax/libs/toastr.js/2.0.1/js/toastr.js"></script>
</body>
<script type="text/javascript">
$(document).ready(function() {
var app = $.jQuerySPApp({defaultView : "main_page"}); // initialize
app.route({
view : "news_post",
onCreate: function() {
},
onReady: function() {
getArticle(localStorage.getItem("article_id"));
getImages(localStorage.getItem("article_id"));
getTags(localStorage.getItem("article_id"));
getComments(localStorage.getItem("article_id"));
}
});
app.route({
view : "main_page",
onCreate: function() {
},
onReady: function() {
getArticles();
}
});
app.route({
view : "world",
onCreate: function() {
},
onReady: function() {
getArticlesWorld();
}
});
app.route({
view : "sports",
onCreate: function() {
},
onReady: function() {
getArticlesSport("SPORTS");
}
});
app.route({
view : "business",
onCreate: function() {
},
onReady: function() {
getArticlesBus("BUSINESS");
}
});
app.route({
view : "search_page",
onCreate: function() {
},
onReady: function() {
getSearchArticles(localStorage.getItem('search'));
}
});
app.run();
if (!window.localStorage.getItem("token")){
window.location = "login.html";
}else{
$('body').show();
var user_admin = AUtils.parse_jwt(localStorage.getItem("token"));
if(user_admin.r != "ADMIN") $(".admin").remove();
localStorage.setItem("username", user_admin.username);
localStorage.setItem("id", user_admin.id);
}
});
function doLogout(){
window.localStorage.clear();
$('body').hide();
window.location = "index.html";
}
function doSearch(){
var search = {
'search' : $('#search').val()
}
localStorage.setItem("search", search.search);
window.location = "#search_page";
}
</script>
</html>