-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
2436 lines (2108 loc) · 102 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
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 lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Resurgence NITH | Esports Club NIT Hamirpur</title>
<meta name="description" content="GoodGames - Bootstrap template for communities and games store">
<meta name="keywords" content="game, gaming, template, HTML template, responsive, Bootstrap, premium">
<meta name="author" content="_nK">
<link rel="icon" type="image/png" href="assets/images/rsgwidget.png">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- START: Styles -->
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Montserrat:400,700%7cOpen+Sans:400,700" rel="stylesheet" type="text/css">
<!-- Bootstrap -->
<link rel="stylesheet" href="assets/vendor/bootstrap/dist/css/bootstrap.min.css">
<!-- FontAwesome -->
<script defer src="assets/vendor/fontawesome-free/js/all.js"></script>
<script defer src="assets/vendor/fontawesome-free/js/v4-shims.js"></script>
<!-- IonIcons -->
<link rel="stylesheet" href="assets/vendor/ionicons/css/ionicons.min.css">
<!-- Flickity -->
<link rel="stylesheet" href="assets/vendor/flickity/dist/flickity.min.css">
<!-- Photoswipe -->
<link rel="stylesheet" type="text/css" href="assets/vendor/photoswipe/dist/photoswipe.css">
<link rel="stylesheet" type="text/css" href="assets/vendor/photoswipe/dist/default-skin/default-skin.css">
<!-- Seiyria Bootstrap Slider -->
<link rel="stylesheet" href="assets/vendor/bootstrap-slider/dist/css/bootstrap-slider.min.css">
<!-- Summernote -->
<link rel="stylesheet" type="text/css" href="assets/vendor/summernote/dist/summernote-bs4.css">
<!-- GoodGames -->
<link rel="stylesheet" href="assets/css/goodgames.css">
<!-- Custom Styles -->
<link rel="stylesheet" href="assets/css/custom.css">
<!-- END: Styles -->
<!-- jQuery -->
<script src="assets/vendor/jquery/dist/jquery.min.js"></script>
</head>
<!--
Additional Classes:
.nk-page-boxed
-->
<body>
<!--
Additional Classes:
.nk-header-opaque
-->
<header class="nk-header nk-header-opaque">
<!-- START: Top Contacts -->
<div class="nk-contacts-top">
<div class="container">
<div class="nk-contacts-left">
<ul class="nk-social-links">
<li><a class="nk-social-twitch" href="https://www.twitch.tv/resurgencenith?tt_content=embed_visit_channel&tt_medium=embed"><span class="fab fa-twitch"></span></a></li>
<li><a class="nk-social-instagram" href="https://www.instagram.com/resurgence_nith/"><span class="fab fa-instagram"></span></a></li>
<li><a class="nk-social-youtube" href="https://www.youtube.com/channel/UCZLHLmyqO8lNxgOp9XR57eQ/featured"><span class="fab fa-youtube"></span></a></li>
<li> <a class="nk-social-discord" href="https://discord.com/invite/5CKFMsBtjV"><span class="fab fa-discord"</span></a> </li>
<!-- Additional Social Buttons
<li><a class="nk-social-behance" href="#"><span class="fab fa-behance"></span></a></li>
<li><a class="nk-social-bitbucket" href="#"><span class="fab fa-bitbucket"></span></a></li>
<li><a class="nk-social-dropbox" href="#"><span class="fab fa-dropbox"></span></a></li>
<li><a class="nk-social-dribbble" href="#"><span class="fab fa-dribbble"></span></a></li>
<li><a class="nk-social-deviantart" href="#"><span class="fab fa-deviantart"></span></a></li>
<li><a class="nk-social-flickr" href="#"><span class="fab fa-flickr"></span></a></li>
<li><a class="nk-social-foursquare" href="#"><span class="fab fa-foursquare"></span></a></li>
<li><a class="nk-social-github" href="#"><span class="fab fa-github"></span></a></li>
<li><a class="nk-social-instagram" href="#"><span class="fab fa-instagram"></span></a></li>
<li><a class="nk-social-linkedin" href="#"><span class="fab fa-linkedin"></span></a></li>
<li><a class="nk-social-medium" href="#"><span class="fab fa-medium"></span></a></li>
<li><a class="nk-social-odnoklassniki" href="#"><span class="fab fa-odnoklassniki"></span></a></li>
<li><a class="nk-social-paypal" href="#"><span class="fab fa-paypal"></span></a></li>
<li><a class="nk-social-reddit" href="#"><span class="fab fa-reddit"></span></a></li>
<li><a class="nk-social-skype" href="#"><span class="fab fa-skype"></span></a></li>
<li><a class="nk-social-soundcloud" href="#"><span class="fab fa-soundcloud"></span></a></li>
<li><a class="nk-social-slack" href="#"><span class="fab fa-slack"></span></a></li>
<li><a class="nk-social-tumblr" href="#"><span class="fab fa-tumblr"></span></a></li>
<li><a class="nk-social-vimeo" href="#"><span class="fab fa-vimeo"></span></a></li>
<li><a class="nk-social-vk" href="#"><span class="fab fa-vk"></span></a></li>
<li><a class="nk-social-wordpress" href="#"><span class="fab fa-wordpress"></span></a></li>
<li><a class="nk-social-youtube" href="#"><span class="fab fa-youtube"></span></a></li>
-->
</ul>
</div>
<div class="nk-contacts-right">
<ul class="nk-contacts-icons">
<li>
<a href="#" data-toggle="modal" data-target="#modalSearch">
<span class="fa fa-search"></span>
</a>
</li>
<li>
<a href="#" data-toggle="modal" data-target="#modalLogin">
<span class="fa fa-user"></span>
</a>
</li>
</ul>
</div>
</div>
</div>
<!-- END: Top Contacts -->
<!--
START: Navbar
Additional Classes:
.nk-navbar-sticky
.nk-navbar-transparent
.nk-navbar-autohide
-->
<nav class="nk-navbar nk-navbar-top nk-navbar-sticky nk-navbar-autohide">
<div class="container">
<div class="nk-nav-table">
<a href="index.html" class="nk-nav-logo">
<img src="assets/images/weblogo.png" alt="Resuegence" width="50">
</a>
<ul class="nk-nav nk-nav-right d-none d-lg-table-cell" data-nav-mobile="#nk-nav-mobile">
<!-- <li class=" nk-drop-item">
<a href="">
Features
</a>
<ul class="dropdown">
<li>
<a href="">
Elements (Shortcodes)
</a>
</li>
<li class=" nk-drop-item">
<a href="">
Forum
</a>
<ul class="dropdown">
<li>
<a href="">
Forum
</a>
</li>
<li>
<a href="">
Topics
</a>
</li>
<li>
<a href="">
Single Topic
</a>
</li>
</ul>
</li>
<li>
<a href="">
Widgets
</a>
</li>
<li>
<a href="">
Coming Soon
</a>
</li>
<li>
<a href="">
Offline
</a>
</li>
<li>
<a href="404.html">
404
</a>
</li>
</ul>
</li> -->
<li class=" nk-drop-item">
<a href="">
Blog
</a>
<ul class="dropdown">
<li>
<a href="">
News
</a>
</li>
<!-- <li class=" nk-drop-item">
<a href="">
Blog With Sidebar
</a>
<ul class="dropdown">
<li>
<a href="">
Blog Grid
</a>
</li>
<li>
<a href="">
Blog List
</a>
</li>
</ul>
</li>
<li>
<a href="">
Blog Fullwidth
</a>
</li>
<li>
<a href="">
Blog Article
</a>
</li> -->
</ul>
</li>
<li>
<a href="">
Gallery
</a>
</li>
<li class=" nk-drop-item">
<a href="tournaments-info.html">
Tournament Info
</a>
<ul class="dropdown">
<li>
<a href="tournaments-info.html">
Tournaments-info
</a>
</li>
<li>
<a href="matches.html">
Matches
</a>
</li> -->
</ul>
</li>
<!-- <li class=" nk-drop-item">
<a href="">
Store
</a>
<ul class="dropdown">
<li>
<a href="">
Store
</a>
</li>
<li>
<a href="">
Product
</a>
</li>
<li>
<a href="">
Catalog
</a>
</li>
<li>
<a href="">
Catalog Alt
</a>
</li>
<li>
<a href="">
Checkout
</a>
</li>
<li>
<a href="">
Cart
</a>
</li>
</ul>
</li> -->
</ul>
<ul class="nk-nav nk-nav-right nk-nav-icons">
<li class="single-icon d-lg-none">
<a href="#" class="no-link-effect" data-nav-toggle="#nk-nav-mobile">
<span class="nk-icon-burger">
<span class="nk-t-1"></span>
<span class="nk-t-2"></span>
<span class="nk-t-3"></span>
</span>
</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- END: Navbar -->
</header>
<!--
START: Navbar Mobile
Additional Classes:
.nk-navbar-left-side
.nk-navbar-right-side
.nk-navbar-lg
.nk-navbar-overlay-content
-->
<div id="nk-nav-mobile" class="nk-navbar nk-navbar-side nk-navbar-right-side nk-navbar-overlay-content d-lg-none">
<div class="nano">
<div class="nano-content">
<a href="index.html" class="nk-nav-logo">
<img src="assets/images/logo.png" alt="" width="120">
</a>
<div class="nk-navbar-mobile-content">
<ul class="nk-nav">
<!-- Here will be inserted menu from [data-mobile-menu="#nk-nav-mobile"] -->
</ul>
</div>
</div>
</div>
</div>
<!-- END: Navbar Mobile -->
<div class="nk-main">
<div class="nk-gap-2"></div>
<div class="container">
<!-- START: Image Slider -->
<div class="nk-image-slider" data-autoplay="4000">
<div class="nk-image-slider-item">
<img src="assets/images/web.png" alt="" class="nk-image-slider-img" data-thumb="assets/images/slide-1-thumb.jpg">
<div class="nk-image-slider-content">
<h3 class="h4">To be prepared for war is one of the most effective means of preserving peace.</h3>
<p class="text-white">Resurgence esports NITH presents to you "Valorant tournament" Where you can participate and win cash prizes worth 10k, so get those traps and strategies in place to compete against various teams and be the ultimate Valorant Champion..</p>
<a href="#" class=""></a>
</div>
</div>
<div class="nk-image-slider-item">
<img src="assets/images/slide 2.png" alt="" class="nk-image-slider-img" data-thumb="assets/images/slide-2-thumb.jpg">
<div class="nk-image-slider-content">
<h3 class="h4">The Journey of a thousand miles begins with a single step.</h3>
<p class="text-white">Today, we take that first step, we take up the challenge and we forge ahead to attain brilliance. NITH enters into a marvelous new chapter with the inauguration of “Resurgence Esports”, a club dedicated to the gamers among us.</p>
<a href="#" class=""></a>
</div>
</div>
<!-- <div class="nk-image-slider-item">
<img src="assets/images/slide-3.jpg" alt="" class="nk-image-slider-img" data-thumb="assets/images/slide-3-thumb.jpg">
</div>
<div class="nk-image-slider-item">
<img src="assets/images/slide-4.jpg" alt="" class="nk-image-slider-img" data-thumb="assets/images/slide-4-thumb.jpg">
<div class="nk-image-slider-content">
<h3 class="h4">At length one of them called out in a clear</h3>
<p class="text-white">TJust then her head struck against the roof of the hall: in fact she was now more than nine feet high...</p>
<a href="#" class="nk-btn nk-btn-rounded nk-btn-color-white nk-btn-hover-color-main-1"></a>
</div> -->
<!-- </div>
<div class="nk-image-slider-item">
<img src="assets/images/slide-5.jpg" alt="" class="nk-image-slider-img" data-thumb="assets/images/slide-5-thumb.jpg">
<div class="nk-image-slider-content">
<h3 class="h4">For good, too though, in consequence</h3>
<p class="text-white">She gave my mother such a turn, that I have always been convinced I am indebted to Miss Betsey for having been born on a Friday. The word was appropriate to the moment.</p>
<p class="text-white">My mother was so much worse that Peggotty, coming in with the teaboard and candles, and seeing at a glance how ill she was, - as Miss Betsey might have done sooner if there had been light enough, - conveyed her
upstairs to her own room with all speed; and immediately dispatched Ham Peggotty, her nephew, who had been for some days past secreted in the house...</p>
<a href="#" class="nk-btn nk-btn-rounded nk-btn-color-white nk-btn-hover-color-main-1"></a>
</div> -->
</div>
</div>
<!-- END: Image Slider -->
<!-- START: Latest News -->
<div class="nk-gap-2"></div>
<div class="container">
<h3 class="nk-decorated-h-2"><span><span class="text-main-1">Latest</span> News</span></h3>
<div class="nk-gap"></div>
<div class="nk-news-box">
<div class="nk-news-box-list">
<div class="nano">
<div class="nano-content">
<div class="nk-news-box-item nk-news-box-item-active">
<div class="nk-news-box-item-img">
<img src="assets/images/valot.jpg" alt="To be prepared for war is one of the most effective means of preserving peace.">
</div>
<img src="assets/images/valot.jpg" alt="To be prepared for war is one of the most effective means of preserving peace." class="nk-news-box-item-full-img">
<h3 class="nk-news-box-item-title">To be prepared for war is one of the most effective means of preserving peace.</h3>
<span class="nk-news-box-item-categories">
<span class="bg-main-4">Action</span>
</span>
<div class="nk-news-box-item-text">
<p>Get ready to flaunt your competitive skills as bullets will fly, grenades will explode and blood will be spilled . Resurgence esports NITH presents to you "Valorant tournament" Where you can participate and win cash prizes worth
10k, so get those traps and strategies in place to compete against various teams and be the ultimate Valorant Champion.</p>
</div>
<a href="" class="nk-news-box-item-url"></a>
<div class="nk-news-box-item-date"><span class="fa fa-calendar "></span> Feb 22, 2022</div>
</div>
<div class="nk-news-box-item">
<div class="nk-news-box-item-img">
<img src="assets/images/csgocl.jpg" alt=" Remember, this is bandit country. Shoot everything that moves." " EzPz lemon squeezy. ">
</div>
<img src="assets/images/csgocl.jpg" alt=" Remember, this is bandit country. Shoot everything that moves." " EzPz lemon squeezy. " class="nk-news-box-item-full-img">
<h3 class="nk-news-box-item-title">" Remember, this is bandit country. Shoot everything that moves."
" EzPz lemon squeezy. "
</h3>
<span class="nk-news-box-item-categories">
<span class="bg-main-1">Action</span>
</span>
<div class="nk-news-box-item-text">
<p>Do these voice lines sound familiar to you? If it does ring a bell, you are definitely an OG CS : GO fan. There is no denying the fact that CS:GO has stood the test of time and remained the king of FPS shooter games. Having
defined an era for competitive plays at Dust II, Inferno and Mirage, Resurgence e-Sports NITH brings to you "RESURGENCE Weekly CS:GO Lobbies" where you can participate to play and relive the glory days of your CS:GO. So, the bomb
has been planted. Now, it's your turn to register here and clutch it out.</p>
</div>
<a href="" class="nk-news-box-item-url"></a>
<div class="nk-news-box-item-date"><span class="fa fa-calendar"></span> Feb 19-20, 2022</div>
</div>
<div class="nk-news-box-item">
<div class="nk-news-box-item-img">
<img src="assets/images/valocl.jpg" alt="Remember, your weapon is only a tool. You can't just shoot, you have to think! ">
</div>
<img src="assets/images/valocl.jpg" alt="Remember, your weapon is only a tool. You can't just shoot, you have to think! " class="nk-news-box-item-full-img">
<h3 class="nk-news-box-item-title">"Remember, your weapon is only a tool. You can't just shoot, you have to think! "
</h3>
<span class="nk-news-box-item-categories">
<span class="bg-main-1">Action</span>
</span>
<div class="nk-news-box-item-text">
<p>Be it a place for you to chill with your friends or a platform for you to showcase your top-notch aim and game sense, Valorant offers the best of both worlds. So, in order to help you achieve your motive with the game - be it fun
or the grind, Resurgence e-Sports NITH brings to you "RESURGENCE Weekly Casual Lobbies" where you can participate with your team to play and have fun. And these Valorant events won't stop just here. We're planning to organize many
other events for you guys so that every Valorant player has a place when looking for something apart from the regular games</p>
</div>
<a href="" class="nk-news-box-item-url"></a>
<div class="nk-news-box-item-date"><span class="fa fa-calendar"></span> Feb 19-20, 2022</div>
</div>
</div>
</div>
</div>
<div class="nk-news-box-each-info">
<div class="nano">
<div class="nano-content">
<!-- There will be inserted info about selected news-->
<div class="nk-news-box-item-image">
<img src="assets/images/post-1.jpg" alt="">
<span class="nk-news-box-item-categories">
<span class="bg-main-4">MMO</span>
</span>
</div>
<h3 class="nk-news-box-item-title">Smell magic in the air. Or maybe barbecue</h3>
<div class="nk-news-box-item-text">
<p>With what mingled joy and sorrow do I take up the pen to write to my dearest friend! Oh, what a change between to-day and yesterday! Now I am friendless and alone...</p>
</div>
<a href="" class="nk-news-box-item-more"></a>
<div class="nk-news-box-item-date">
<span class="fa fa-calendar"></span> , 2022
</div>
</div>
</div>
</div>
</div>
<div class="nk-gap-2"></div>
<!-- <div class="nk-blog-grid">
<div class="row">
<div class="col-md-6 col-lg-3">
START: Post -->
<!-- <div class="nk-blog-post">
<a href="blog-article.html" class="nk-post-img">
<img src="assets/images/post-5-mid.jpg" alt="He made his passenger captain of one">
<span class="nk-post-comments-count">13</span>
<span class="nk-post-categories">
<span class="bg-main-5">Indie</span>
</span>
</a>
<div class="nk-gap"></div>
<h2 class="nk-post-title h4"><a href="blog-article.html">He made his passenger captain of one</a></h2>
<div class="nk-post-text">
<p>Just then her head struck against the roof of the hall: in fact she was now more than nine feet high, and she at once took up the little golden key and hurried off to the garden door...</p>
</div>
<div class="nk-gap"></div>
<a href="blog-article.html" class="nk-btn nk-btn-rounded nk-btn-color-dark-3 nk-btn-hover-color-main-1"></a>
<div class="nk-post-date float-right"><span class="fa fa-calendar"></span> Jul 23, 2018</div>
</div> -->
<!-- END: Post -->
<!-- </div>
<div class="col-md-6 col-lg-3">
START: Post -->
<!-- <div class="nk-blog-post">
<a href="blog-article.html" class="nk-post-img">
<img src="assets/images/post-6-mid.jpg" alt="At first, for some time, I was not able to answer">
<span class="nk-post-comments-count">0</span>
<span class="nk-post-categories">
<span class="bg-main-5">Racing</span>
</span>
</a>
<div class="nk-gap"></div>
<h2 class="nk-post-title h4"><a href="blog-article.html">At first, for some time, I was not able to answer</a></h2>
<div class="nk-post-text">
<p>This little wandering journey, without settled place of abode, had been so unpleasant to me, that my own house, as I called it to myself, was a perfect settlement to me compared to that...</p>
</div>
<div class="nk-gap"></div>
<a href="blog-article.html" class="nk-btn nk-btn-rounded nk-btn-color-dark-3 nk-btn-hover-color-main-1"></a>
<div class="nk-post-date float-right"><span class="fa fa-calendar"></span> Jul 3, 2018</div>
</div> -->
<!-- END: Post -->
<!-- </div> -->
<!-- <div class="col-md-6 col-lg-3"> -->
<!-- START: Post -->
<!-- <div class="nk-blog-post">
<a href="blog-article.html" class="nk-post-img">
<img src="assets/images/post-7-mid.jpg" alt="At length one of them called out in a clear">
<span class="nk-post-comments-count">0</span>
<span class="nk-post-categories">
<span class="bg-main-6">MOBA</span>
</span>
</a>
<div class="nk-gap"></div>
<h2 class="nk-post-title h4"><a href="blog-article.html">At length one of them called out in a clear</a></h2>
<div class="nk-post-text">
<p>TJust then her head struck against the roof of the hall: in fact she was now more than nine feet high, and she at once took up the little golden key and hurried off to the garden door...</p>
</div>
<div class="nk-gap"></div>
<a href="blog-article.html" class="nk-btn nk-btn-rounded nk-btn-color-dark-3 nk-btn-hover-color-main-1"></a>
<div class="nk-post-date float-right"><span class="fa fa-calendar"></span> Jul 3, 2018</div>
</div> -->
<!-- END: Post -->
<!-- </div>
<div class="col-md-6 col-lg-3"> -->
<!-- START: Post -->
<!-- <div class="nk-blog-post">
<a href="blog-article.html" class="nk-post-img">
<img src="assets/images/post-8-mid.jpg" alt="For good, too though, in consequence">
<span class="nk-post-comments-count">0</span>
<span class="nk-post-categories">
<span class="bg-main-2">Adventure</span>
</span>
</a>
<div class="nk-gap"></div>
<h2 class="nk-post-title h4"><a href="blog-article.html">For good, too though, in consequence</a></h2>
<div class="nk-post-text">
<p>This little wandering journey, without settled place of abode, had been so unpleasant to me, that my own house, as I called it to myself, was a perfect settlement to me compared to that...</p>
</div>
<div class="nk-gap"></div>
<a href="blog-article.html" class="nk-btn nk-btn-rounded nk-btn-color-dark-3 nk-btn-hover-color-main-1"></a>
<div class="nk-post-date float-right"><span class="fa fa-calendar"></span> Jul 3, 2018</div>
</div> -->
<!-- END: Post -->
<!-- </div>
</div>
</div>-->
<!-- END: Latest News -->
<div class="nk-gap-2"></div>
<div class="row vertical-gap">
<div class="col-lg-8">
<!-- START: Latest Posts -->
<!-- <div class="nk-blog-grid"> -->
<!-- <div class="row"> -->
<!-- <div class="col-md-6"> -->
<!-- START: Post -->
<!-- <div class="nk-blog-post">
<a href="blog-article.html" class="nk-post-img">
<img src="assets/images/post-5-mid.jpg" alt="He made his passenger captain of one">
<span class="nk-post-comments-count">13</span>
</a>
<div class="nk-gap"></div>
<h2 class="nk-post-title h4"><a href="blog-article.html">He made his passenger captain of one</a></h2>
<div class="nk-post-by">
<img src="assets/images/avatar-3.jpg" alt="Wolfenstein" class="rounded-circle" width="35"> by <a href="#">Wolfenstein</a> in Jul 23, 2018
</div>
<div class="nk-gap"></div>
<div class="nk-post-text">
<p>Just then her head struck against the roof of the hall: in fact she was now more than nine feet high, and she at once took up the little golden key and hurried off to the garden door...</p>
</div>
<div class="nk-gap"></div>
<a href="blog-article.html" class="nk-btn nk-btn-rounded nk-btn-color-dark-3 nk-btn-hover-color-main-1"></a>
</div> -->
<!-- END: Post -->
<!-- </div>
<div class="col-md-6"> -->
<!-- START: Post -->
<!-- <div class="nk-blog-post">
<a href="blog-article.html" class="nk-post-img">
<img src="assets/images/post-6-mid.jpg" alt="At first, for some time, I was not able to answer">
<span class="nk-post-comments-count">0</span>
</a>
<div class="nk-gap"></div>
<h2 class="nk-post-title h4"><a href="blog-article.html">At first, for some time, I was not able to answer</a></h2>
<div class="nk-post-by">
<img src="assets/images/avatar-3.jpg" alt="Wolfenstein" class="rounded-circle" width="35"> by <a href="#">Wolfenstein</a> in Jul 3, 2018
</div>
<div class="nk-gap"></div>
<div class="nk-post-text">
<p>This little wandering journey, without settled place of abode, had been so unpleasant to me, that my own house, as I called it to myself, was a perfect settlement to me compared to that...</p>
</div>
<div class="nk-gap"></div>
<a href="blog-article.html" class="nk-btn nk-btn-rounded nk-btn-color-dark-3 nk-btn-hover-color-main-1"></a>
</div> -->
<!-- END: Post -->
<!-- </div>
</div>
</div> -->
<!-- END: Latest Posts -->
<!-- START: Latest Matches -->
<h3 class="nk-decorated-h-2"><span><span class="text-main-1">Latest</span> Matches</span></h3>
<!-- <div class="row">
<div class="col-md-4">
<div class="nk-match-score bg-dark-3">
Now Playing
</div>
<div class="nk-gap-2"></div>
<div class="nk-widget-match p-0">
<div class="nk-widget-match-teams">
<div class="nk-widget-match-team-logo">
<img src="assets/images/team-1.jpg" alt="">
</div>
<div class="nk-widget-match-vs">VS</div>
<div class="nk-widget-match-team-logo">
<img src="assets/images/team-2.jpg" alt="">
</div>
</div>
</div>
<div class="nk-gap-2"></div>
<p>As she said this she looked down at her hands and was surprised to see.</p>
<a href="tournaments.html" class="nk-btn nk-btn-rounded nk-btn-color-main-1">Match Details</a>
</div>
<div class="col-md-8">
<div class="responsive-embed responsive-embed-16x9">
<iframe src="https://player.twitch.tv/?channel=eulcs&autoplay=false" frameborder="0" allowfullscreen="true" scrolling="no" height="378" width="620"></iframe>
</div>
</div>
</div> -->
<div class="nano has-scrollbar">
<div class="nano-content" tabindex="0" style:"right: -17px;">
<div class="nk-match">
<div class="nk-match-team-left">
<a href="#">
<span class="nk-match-team-logo">
<img src="assets/images/team-1.jpg" alt="">
</span>
<span class="nk-match-team-name">
Optimistic eSports
</span>
</a>
</div>
<div class="nk-match-status">
<a href="#">
<span class="nk-match-status-vs">VS</span>
<span class="nk-match-status-date">5:00 pm</span>
</a>
</div>
<div class="nk-match-team-right">
<a href="#">
<span class="nk-match-team-name">
MrZ
</span>
<span class="nk-match-team-logo">
<img src="assets/images/team-2.jpg" alt="">
</span>
</a>
</div>
</div>
<div class="nk-match">
<div class="nk-match-team-left">
<a href="#">
<span class="nk-match-team-logo">
<img src="assets/images/team-3.jpg" alt="">
</span>
<span class="nk-match-team-name">
Team Astra
</span>
</a>
</div>
<div class="nk-match-status">
<a href="#">
<span class="nk-match-status-vs">VS</span>
<span class="nk-match-status-date">5:00 pm</span>
</a>
</div>
<div class="nk-match-team-right">
<a href="#">
<span class="nk-match-team-name">
L Streaks Esports
</span>
<span class="nk-match-team-logo">
<img src="assets/images/team-1.jpg" alt="">
</span>
</a>
</div>
</div>
<div class="nk-match">
<div class="nk-match-team-left">
<a href="#">
<span class="nk-match-team-logo">
<img src="assets/images/team-4.jpg" alt="">
</span>
<span class="nk-match-team-name">
Amigos Esports
</span>
</a>
</div>
<div class="nk-match-status">
<a href="#">
<span class="nk-match-status-vs">VS</span>
<span class="nk-match-status-date">5:00 pm</span>
</a>
</div>
<div class="nk-match-team-right">
<a href="#">
<span class="nk-match-team-name">
X Gravity eSports
</span>
<span class="nk-match-team-logo">
<img src="assets/images/team-1.jpg" alt="">
</span>
</a>
</div>
</div>
<div class="nk-match">
<div class="nk-match-team-left">
<a href="#">
<span class="nk-match-team-logo">
<img src="assets/images/team-1.jpg" alt="">
</span>
<span class="nk-match-team-name">
ROG Academy
</span>
</a>
</div>
<div class="nk-match-status">
<a href="#">
<span class="nk-match-status-vs">VS</span>
<span class="nk-match-status-date">5:00 pm</span>
</a>
</div>
<div class="nk-match-team-right">
<a href="#">
<span class="nk-match-team-name">
Autolock Esports
</span>
<span class="nk-match-team-logo">
<img src="assets/images/team-2.jpg" alt="">
</span>
</a>
</div>
</div>
<div class="nk-match">
<div class="nk-match-team-left">
<a href="#">
<span class="nk-match-team-logo">
<img src="assets/images/team-3.jpg" alt="">
</span>
<span class="nk-match-team-name">
L Streak
</span>
</a>
</div>
<div class="nk-match-status">
<a href="#">
<span class="nk-match-status-vs">VS</span>
<span class="nk-match-status-date">5:00 pm</span>
</a>
</div>
<div class="nk-match-team-right">
<a href="#">
<span class="nk-match-team-name">
KAIZEN
</span>
<span class="nk-match-team-logo">
<img src="assets/images/team-1.jpg" alt="">
</span>
</a>
</div>
</div>
<div class="nk-match">
<div class="nk-match-team-left">
<a href="#">
<span class="nk-match-team-logo">
<img src="assets/images/team-4.jpg" alt="">
</span>
<span class="nk-match-team-name">
Team Mavericks
</span>
</a>
</div>
<div class="nk-match-status">
<a href="#">
<span class="nk-match-status-vs">VS</span>
<span class="nk-match-status-date">5:00 pm</span>
</a>
</div>
<div class="nk-match-team-right">
<a href="#">
<span class="nk-match-team-name">
Psyzor Esports
</span>
<span class="nk-match-team-logo">
<img src="assets/images/team-1.jpg" alt="">
</span>
</a>
</div>
</div>
<div class="nk-match">
<div class="nk-match-team-left">
<a href="#">
<span class="nk-match-team-logo">
<img src="assets/images/team-1.jpg" alt="">
</span>
<span class="nk-match-team-name">
H20
</span>
</a>
</div>
<div class="nk-match-status">
<a href="#">
<span class="nk-match-status-vs">VS</span>
<span class="nk-match-status-date">5:00 pm</span>
</a>
</div>
<div class="nk-match-team-right">
<a href="#">
<span class="nk-match-team-name">
Wild Wolves
</span>
<span class="nk-match-team-logo">
<img src="assets/images/team-2.jpg" alt="">
</span>
</a>
</div>
</div>
<div class="nk-match">
<div class="nk-match-team-left">
<a href="#">
<span class="nk-match-team-logo">
<img src="assets/images/team-3.jpg" alt="">
</span>
<span class="nk-match-team-name">
Into the Valo-Verse
</span>
</a>
</div>
<div class="nk-match-status">
<a href="#">
<span class="nk-match-status-vs">VS</span>
<span class="nk-match-status-date">5:00 pm</span>
</a>
</div>
<div class="nk-match-team-right">
<a href="#">
<span class="nk-match-team-name">
Terror Squad
</span>
<span class="nk-match-team-logo">
<img src="assets/images/team-1.jpg" alt="">
</span>
</a>
</div>
</div>
<div class="nk-match">
<div class="nk-match-team-left">