-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
732 lines (688 loc) · 44.1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="img/fav-icon.png" type="image/x-icon" />
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Dragons & Deadlines</title>
<!-- Icon css link -->
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/icofont.css" rel="stylesheet">
<!-- Bootstrap -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Rev slider css -->
<link href="vendors/revolution/css/settings.css" rel="stylesheet">
<link href="vendors/revolution/css/layers.css" rel="stylesheet">
<link href="vendors/revolution/css/navigation.css" rel="stylesheet">
<link href="vendors/animate-css/animate.css" rel="stylesheet">
<!-- Extra plugin css -->
<link href="vendors/magnific-popup/magnific-popup.css" rel="stylesheet">
<link href="vendors/owl-carousel/assets/owl.carousel.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body data-spy="scroll" data-target="#bs-example-navbar-collapse-1" data-offset="90">
<div id="preloader">
<div id="preloader_spinner">
<div class="pre_inner">
<div class="dot dot-1"></div>
<div class="dot dot-2"></div>
<div class="dot dot-3"></div>
</div>
</div>
</div>
<!--================Header Area =================-->
<header class="dash_tp_menu_area">
<nav class="navbar navbar-default">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><img src="img/dash-logo.png" alt=""></a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li class="active"><a href="#about">About</a></li>
<li><a href="#feature">Features</a></li>
<li><a href="#screenshot">Screenshots</a></li>
<li><a href="#team">Team</a></li>
<li><a href="#team">Contact</a></li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li class="get_free_btn"><a href="https://db.dragonsanddeadlines.com">Try Demo Now!</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</nav>
</header>
<!--================End Header Area =================-->
<!--================Slider Area =================-->
<section class="main_slider_area">
<div id="dash_slider" class="rev_slider" data-version="5.3.1.6">
<ul>
<li data-index="rs-2972" data-transition="slidingoverlayhorizontal" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default" data-easeout="default" data-masterspeed="default" data-thumb="img/home-slider/slider-1.jpg" data-rotate="0" data-saveperformance="off" data-title="Web Show" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
<!-- LAYERS -->
<div class="slider_text_box">
<div class="tp-caption ds_first_text"
data-x="['left','left','left','left','left']"
data-y="['middle','middle','middle','middle']"
data-hoffset="['0','0','0','15','10']"
data-voffset="['-50','-100','-100','-100','-100']"
data-fontsize="['60','60','60','50','30']"
data-lineheight="['85','85','85','60','40']"
data-width="['none','none','none','none']"
data-height="none"
data-whitespace="['nowrap','nowrap','nowrap','nowrap','nowrap']"
data-type="text"
data-responsive_offset="on"
data-frames='[{"from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","speed":1500,"to":"o:1;","delay":1700,"ease":"Power3.easeInOut"},{"delay":"wait","speed":1000,"to":"x:left(R);","ease":"Power3.easeIn"}]'
data-textAlign="['left','left','left','left','left']"
data-paddingtop="[0,0,0,0]"
data-paddingright="[0,0,0,0]"
data-paddingbottom="[5,5,5,5]"
data-paddingleft="[0,0,0,0]">Extract HR Insights<br class="ds_br1" /> through Gamification</div>
<div class="tp-caption ds_secand_text"
data-x="['left','left','left','left','left']"
data-y="['middle','middle','middle','middle']"
data-hoffset="['0','0','0','15','10']"
data-voffset="['130','80','80','50','30']"
data-fontsize="['16','16','16','16','14']"
data-lineheight="['28','28','28','28','28']"
data-width="['500','500','500','500','100%']"
data-height="none"
data-whitespace="normal"
data-type="text"
data-responsive_offset="on"
data-frames='[{"from":"y:[-100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;","mask":"x:0px;y:0px;s:inherit;e:inherit;","speed":2000,"to":"o:1;","delay":1750,"ease":"Power2.easeInOut"},{"delay":"wait","speed":300,"to":"opacity:0;","ease":"nothing"}]'
data-textAlign="['left','left','left','left']"
data-paddingtop="[50,50,50,50]"
data-paddingright="[0,0,0,0]"
data-paddingbottom="[0,0,0,0]"
data-paddingleft="[0,0,0,0]">Fight agains sprints with Roleplay Agile Game!</div>
<a href="https://db.dragonsanddeadlines.com/">
<div class="tp-caption video_text"
data-x="['left','left','left','left','left']"
data-y="['middle','middle','middle','middle']"
data-hoffset="['-40','-40','-40','-20','-15']"
data-voffset="['250','200','200','150','150']"
data-fontsize="['16','16','16','16']"
data-lineheight="['28','28','28','28']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-type="text"
data-responsive_offset="on"
data-frames='[{"from":"y:[-100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;","mask":"x:0px;y:0px;s:inherit;e:inherit;","speed":2000,"to":"o:1;","delay":1750,"ease":"Power2.easeInOut"},{"delay":"wait","speed":300,"to":"opacity:0;","ease":"nothing"}]'
data-textAlign="['left','left','left','left']"
data-paddingtop="[0,0,0,0]"
data-paddingright="[0,0,0,0]"
data-paddingbottom="[0,0,0,0]"
data-paddingleft="[0,0,0,0]"><img src="img/icon/play-video.png" alt=""> Try out Demo</div>
</a>
<div class="tp-caption right_img"
data-x="['right','right','right','right']"
data-y="['middle','middle','middle','middle']"
data-hoffset="['-350','0','0','0']"
data-voffset="['100','40','40','0']"
data-fontsize="['16','16','16','16']"
data-lineheight="['28','28','28','28']"
data-width="['none','400']"
data-height="none"
data-whitespace="nowrap"
data-type="text"
data-responsive="on"
data-frames='[{"from":"y:[-100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;","mask":"x:0px;y:0px;s:inherit;e:inherit;","speed":2000,"to":"o:1;","delay":1750,"ease":"Power2.easeInOut"},{"delay":"wait","speed":300,"to":"opacity:0;","ease":"nothing"}]'
data-textAlign="['left','left','left','left']"
data-paddingtop="[0,0,0,0]"
data-paddingright="[0,0,0,0]"
data-paddingbottom="[0,0,0,0]"
data-paddingleft="[0,0,0,0]"><img src="img/home-slider/slider-right-img.png" alt=""></div>
</div>
</li>
<li data-index="rs-2973" data-transition="slidingoverlayhorizontal" data-slotamount="default" data-hideafterloop="0" data-hideslideonmobile="off" data-easein="default" data-easeout="default" data-masterspeed="default" data-thumb="img/home-slider/slider-1.jpg" data-rotate="0" data-saveperformance="off" data-title="Web Show" data-param1="" data-param2="" data-param3="" data-param4="" data-param5="" data-param6="" data-param7="" data-param8="" data-param9="" data-param10="" data-description="">
<!-- LAYERS -->
<div class="slider_text_box">
<div class="tp-caption ds_first_text"
data-x="['left','left','left','left','left']"
data-y="['middle','middle','middle','middle']"
data-hoffset="['0','0','0','15','10']"
data-voffset="['-50','-100','-100','-100','-100']"
data-fontsize="['60','60','60','50','30']"
data-lineheight="['85','85','85','60','40']"
data-width="['none','none','none','none']"
data-height="none"
data-whitespace="['nowrap','nowrap','nowrap','nowrap','nowrap']"
data-type="text"
data-responsive_offset="on"
data-frames='[{"from":"z:0;rX:0;rY:0;rZ:0;sX:0.9;sY:0.9;skX:0;skY:0;opacity:0;","speed":1500,"to":"o:1;","delay":1700,"ease":"Power3.easeInOut"},{"delay":"wait","speed":1000,"to":"x:left(R);","ease":"Power3.easeIn"}]'
data-textAlign="['left','left','left','left','left']"
data-paddingtop="[0,0,0,0]"
data-paddingright="[0,0,0,0]"
data-paddingbottom="[10,10,10,10]"
data-paddingleft="[0,0,0,0]">Grow With “Dragons and Deadlines” <br class="ds_br1" /> Dashboard Features</div>
<div class="tp-caption ds_secand_text"
data-x="['left','left','left','left','left']"
data-y="['middle','middle','middle','middle']"
data-hoffset="['0','0','0','15','10']"
data-voffset="['130','80','80','50','30']"
data-fontsize="['16','16','16','16','14']"
data-lineheight="['28','28','28','28','28']"
data-width="['500','500','500','500','100%']"
data-height="none"
data-whitespace="normal"
data-type="text"
data-responsive_offset="on"
data-frames='[{"from":"y:[-100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;","mask":"x:0px;y:0px;s:inherit;e:inherit;","speed":2000,"to":"o:1;","delay":1750,"ease":"Power2.easeInOut"},{"delay":"wait","speed":300,"to":"opacity:0;","ease":"nothing"}]'
data-textAlign="['left','left','left','left']"
data-paddingtop="[0,0,0,0]"
data-paddingright="[0,0,0,0]"
data-paddingbottom="[0,0,0,0]"
data-paddingleft="[0,0,0,0]">In a professional context it often happens that private or corporate clients corder a publication to be made and presented with the actual content still not being ready.</div>
<div class="tp-caption video_text"
data-x="['left','left','left','left','left']"
data-y="['middle','middle','middle','middle']"
data-hoffset="['-40','-40','-40','-20','-15']"
data-voffset="['250','200','200','150','150']"
data-fontsize="['16','16','16','16']"
data-lineheight="['28','28','28','28']"
data-width="none"
data-height="none"
data-whitespace="nowrap"
data-type="text"
data-responsive_offset="on"
data-frames='[{"from":"y:[-100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;","mask":"x:0px;y:0px;s:inherit;e:inherit;","speed":2000,"to":"o:1;","delay":1750,"ease":"Power2.easeInOut"},{"delay":"wait","speed":300,"to":"opacity:0;","ease":"nothing"}]'
data-textAlign="['left','left','left','left']"
data-paddingtop="[0,0,0,0]"
data-paddingright="[0,0,0,0]"
data-paddingbottom="[0,0,0,0]"
data-paddingleft="[0,0,0,0]"><img src="img/icon/play-video.png" alt=""> Watch Video</div>
<div class="tp-caption right_img"
data-x="['right','right','right','right']"
data-y="['middle','middle','middle','middle']"
data-hoffset="['-350','0','0','0']"
data-voffset="['100','40','40','0']"
data-fontsize="['16','16','16','16']"
data-lineheight="['28','28','28','28']"
data-width="['none','400']"
data-height="none"
data-whitespace="nowrap"
data-type="text"
data-responsive="on"
data-frames='[{"from":"y:[-100%];z:0;rX:0deg;rY:0;rZ:0;sX:1;sY:1;skX:0;skY:0;","mask":"x:0px;y:0px;s:inherit;e:inherit;","speed":2000,"to":"o:1;","delay":1750,"ease":"Power2.easeInOut"},{"delay":"wait","speed":300,"to":"opacity:0;","ease":"nothing"}]'
data-textAlign="['left','left','left','left']"
data-paddingtop="[0,0,0,0]"
data-paddingright="[0,0,0,0]"
data-paddingbottom="[0,0,0,0]"
data-paddingleft="[0,0,0,0]"><img src="img/home-slider/slider-right-img.png" alt=""></div>
</div>
</li>
</ul>
</div>
</section>
<!--================End Slider Area =================-->
<!--================Powerful Area =================-->
<section class="powerfull_area" id="about">
<div class="row pawerfull_area_inner">
<div class="col-md-5">
<div class="power_left_img">
<img src="img/power-ds-img.png" alt="">
</div>
</div>
<div class="col-md-7">
<div class="power_right_content">
<div class="power_right_content_inner">
<h3 class="single_title">Our simple & powerful dashboard</h3>
<p>We integrate with Atlassian, Git and DevOps services to measure your team performence. This dashboard helps to get insights about your team, yourself and helps to make a career from intern to lead software developer.</p>
<ul>
<li><a href="#"><img src="img/icon/check-icon.png" alt="">Bitbucket Integration</a></li>
<li><a href="#"><img src="img/icon/check-icon.png" alt="">TeamCity Integration</a></li>
<li><a href="#"><img src="img/icon/check-icon.png" alt="">Jira Integration</a></li>
<li><a href="#"><img src="img/icon/check-icon.png" alt="">Nexus Integration</a></li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!--================End Powerful Area =================-->
<!--================Provide Feature Area =================-->
<section class="provide_feature_area" id="feature">
<div class="p_feature_left">
<div class="p_f_left_content">
<h3 class="single_title">Welcome <br class="ds_br1" />to the <br class="ds_br1" /> Roleplay World!</h3>
<div class="p_left_item_inner">
<div class="p_item">
<div class="media">
<div class="media-left">
<img src="img/icon/p-icon-1.png" alt="">
</div>
<div class="media-body">
<h4>Get Performance Report</h4>
<p>It will help you improve coding skills and become senior developer in 1 year.We promise this.</p>
</div>
</div>
</div>
<div class="p_item">
<div class="media">
<div class="media-left">
<img src="img/icon/p-icon-2.png" alt="">
</div>
<div class="media-body">
<h4>Fight against Raid Bosses!</h4>
<p>Test your Agile team and fight versus your Sprint Bosses. Boost your team, collect badges!</p>
</div>
</div>
</div>
<div class="p_item">
<div class="media">
<div class="media-left">
<img src="img/icon/p-icon-5.png" alt="">
</div>
<div class="media-body">
<h4>Customize Character</h4>
<p>Fight agains sprint monsters & grab unique awards by finishing sprints</p>
</div>
</div>
</div>
<div class="p_item">
<div class="media">
<div class="media-left">
<img src="img/icon/p-icon-4.png" alt="">
</div>
<div class="media-body">
<h4>Career Insights</h4>
<p>See how to become lead software developer with our analytics and game elements.</p>
</div>
</div>
</div>
<div class="p_item">
<div class="media">
<div class="media-left">
<img src="img/icon/p-icon-3.png" alt="">
</div>
<div class="media-body">
<h4>Solve Quests</h4>
<p>Your Sprint tasks are the main quest for your team. Help them and achive coins and treasure</p>
</div>
</div>
</div>
<div class="p_item">
<div class="media">
<div class="media-left">
<img src="img/icon/p-icon-6.png" alt="">
</div>
<div class="media-body">
<h4>Integration with all popular services</h4>
<p>We will create full report based on your Git and DevOps services</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="p_feature_right">
<div class="p_feature_img">
<img src="img/provide-ds-img.png" alt="">
</div>
</div>
</section>
<!--================End Provide Feature Area =================-->
<!--================Dashboard Screenshot Area =================-->
<section class="dash_screen_area" id="screenshot">
<div class="container">
<h3 class="single_title">Dangeon & Deadlines Screenshots<br class="t_br" /> works</h3>
</div>
<div class="dash_screen_slider owl-carousel">
<div class="item">
<img src="img/laptop-slider/slider-1.png" alt="">
</div>
<div class="item">
<img src="img/laptop-slider/slider-2.png" alt="">
</div>
<div class="item">
<img src="img/laptop-slider/slider-3.png" alt="">
</div>
</div>
</section>
<!--================End Dashboard Screenshot Area =================-->
<!--================Customers Count Area =================-->
<!-- <section class="customer_count_area">
<div class="container">
<div class="row">
<div class="col-md-3 col-xs-6">
<div class="customer_count_item">
<img src="img/icon/customer-c-1.png" alt="">
<h5>Unique Items</h5>
<h4 class="counter">500</h4>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="customer_count_item">
<img src="img/icon/customer-c-2.png" alt="">
<h5>Great Characters</h5>
<h4 class="counter">100,000</h4>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="customer_count_item">
<img src="img/icon/customer-c-3.png" alt="">
<h5>Career Ways</h5>
<h4 class="counter">10,000,000</h4>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="customer_count_item">
<img src="img/icon/customer-c-4.png" alt="">
<h5>Quests & Stories</h5>
<h4 class="counter">1000</h4>
</div>
</div>
</div>
</div>
</section> -->
<!--================End Customers Count Area =================-->
<!--================Exclusive Team Memebers Area =================-->
<section class="exclusive_team_area" id="team">
<div class="container">
<div class="exclusive_title">
<h2>Great product makes great people</h2>
</div>
<div class="row exclusive_team_inner">
<div class="col-md-3 col-xs-6">
<div class="exclusive_team_item">
<img src="img/team-slider/exclusive-team/img-alex.jpg" alt="">
<div class="hover_team_details">
<a href="#"><h4>Aleksandr Malyshev</h4></a>
<h5>CEO</h5>
<p></p>
<ul>
<li><a href="https://fb.com/alexmdaily"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://tele.click/aleksandr_malyshev"><i class="fa fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="exclusive_team_item">
<img src="img/team-slider/exclusive-team/olegovich.jpg" alt="">
<div class="hover_team_details">
<a href="https://okhlopkov.com/"><h4>Daniil Okhlopkov</h4></a>
<h5>CTO</h5>
<p></p>
<ul>
<li><a href="https://www.facebook.com/danokhlopkov"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://www.linkedin.com/in/dokhlopkov/"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://www.producthunt.com/@okhlopkov"><i class="fa fa-product-hunt"></i></a></li>
<li><a href="https://github.com/ohld"><i class="fa fa-github"></i></a></li>
<li><a href="https://t.me/okhlopkov"><i class="fa fa-telegram"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="exclusive_team_item">
<img src="img/team-slider/exclusive-team/dmitry.jpg" alt="">
<div class="hover_team_details">
<a href="#"><h4>Dmitrij Malakhov</h4></a>
<h5>Chief Developer</h5>
<p></p>
<ul>
<li><a href="https://www.linkedin.com/in/dmitriy-malahov-b50840102/"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://t.me/Hennessy81"><i class="fa fa-telegram"></i></a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-3 col-xs-6">
<div class="exclusive_team_item">
<img src="img/team-slider/exclusive-team/maxi.jpg" alt="">
</div>
</div>
</div>
</div>
</section>
<!--================End Exclusive Team Memebers Area =================-->
<!--================Discover Video Area =================-->
<section class="discover_video_area">
<div class="container">
<div class="discover_video_text">
<h3>Discover more with video </h3>
</div>
<div class="discover_video_inner">
<img src="img/power-ds-img-white.png" alt="">
<a class="popup-youtube" href="https://www.youtube.com/watch?v=cL5A0CzxNMo"><i class="fa fa-play"></i></a>
</div>
</div>
</section>
<!--================End Discover Video Area =================-->
<!--================Advanced Settings Area =================-->
<section class="advanced_settings_area">
<div class="advanced_settings_inner">
<div class="left_advanced">
<div class="left_advanced_img">
<img src="img/advanced-laptop.png" alt="">
</div>
</div>
<div class="right_advanced">
<div class="right_advanced_text">
<h3>Fight against Sprints</h3>
<p>Damage Dungeon Boss (a.k.a. Sprint) with your Perks (closed Jira tasks), decrease his Health Points (Scrum Story Points) and earn Loot (in-game items, achievements or stuff from real life).</p>
<div class="settings_img">
<!-- <a href="#"><img src="img/settings-1.png" alt=""></a> -->
<!-- <a href="#"><img src="img/settings-2.png" alt=""></a> -->
</div>
<a class="black_d_btn_r" href="https://www.paypal.me/okhlopkov/30">Support project with your Donation</a>
</div>
</div>
</div>
</section>
<!--================End Advanced Settings Area =================-->
<!--================Subscrib Area =================-->
<!-- <section class="subscrib_area2">
<div class="container">
<div class="main_title2">
<h2>Subscribe our newsletter</h2>
<p>it will always have a place in the web workers toolbox, as things happen, not always the way you like it, not always in the preferred order.</p>
</div>
<div class="input-group">
<input type="text" class="form-control" placeholder="Type your email address">
<span class="input-group-btn">
<button class="btn btn-default" type="button"><i class="fa fa-paper-plane" aria-hidden="true"></i></button>
</span>
</div>
</div>
</section> -->
<!--================End Subscrib Area =================-->
<!--================Update Blog Post Area =================-->
<!-- <section class="update_blog_area" id="blog">
<div class="container">
<h2 class="single_title_center">Update from our blog post</h2>
<div class="row update_blog_inner">
<div class="col-md-4 col-xs-6">
<div class="up_blog_item">
<div class="blog_img"><img src="img/blog/update-blog/up-blog-1.jpg" alt=""></div>
<div class="up_blog_text">
<h5>May 10th, 2017</h5>
<a href="#"><h4>This is our latest dashboard design new features</h4></a>
<a class="read_c" href="#">Read Contiune <i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-md-4 col-xs-6">
<div class="up_blog_item">
<div class="blog_img"><img src="img/blog/update-blog/up-blog-2.jpg" alt=""></div>
<div class="up_blog_text">
<h5>May 10th, 2017</h5>
<a href="#"><h4>This is our latest dashboard design new features</h4></a>
<a class="read_c" href="#">Read Contiune <i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
<div class="col-md-4 col-xs-6">
<div class="up_blog_item">
<div class="blog_img"><img src="img/blog/update-blog/up-blog-3.jpg" alt=""></div>
<div class="up_blog_text">
<h5>May 10th, 2017</h5>
<a href="#"><h4>This is our latest dashboard design new features</h4></a>
<a class="read_c" href="#">Read Contiune <i class="fa fa-angle-right"></i></a>
</div>
</div>
</div>
</div>
<div class="more_post">
<a href="#">More Post...</a>
</div>
</div>
</section> -->
<!--================End Update Blog Post Area =================-->
<!--================Asked Question Area =================-->
<!-- <section class="asked_ques_area">
<div class="container">
<h2 class="single_title_center">Frequently asked some questions</h2>
<div class="row asked_ques_inner">
<div class="col-md-6">
<div class="asked_item">
<h4>1. Are you know what is drimo dashboard?</h4>
<p>Usually, we prefer the real thing, wine without sulfur based preservatives, real butter, not margarine, and so we'd like our layouts and designs to be filled with real words, with thoughts that count.</p>
</div>
</div>
<div class="col-md-6">
<div class="asked_item">
<h4>2. How can easily I use this admin panel?</h4>
<p>You begin with a text, you sculpt information, you chisel away what's not needed, you come to the point, make things clear, add value, you're a content person, you like words. Design is no afterthought, far from it, but it comes in a deserved second.</p>
</div>
</div>
<div class="col-md-6">
<div class="asked_item">
<h4>3. Which operating system is best & why?</h4>
<p>That's not so bad, there's dummy copy to the rescue. But worse, what if the fish doesn't fit in the can, the foot's to big for the boot? Or to small? To short sentences, to many headings, images too large for the proposed design, or too small, or they fit in but it looks iffy for reasons the folks in the meeting can't quite tell right now, but they're unhappy, somehow.</p>
</div>
</div>
<div class="col-md-6">
<div class="asked_item">
<h4>4. What is the main features & latest opportunity?</h4>
<p>The toppings you may chose for that TV dinner pizza slice when you forgot to shop for foods, the paint you may slap on your face to impress the new boss is your business. But what about your daily bread? Design comps, layouts, wireframes—will your clients accept that you go about things the facile way? Authorities in our business will tell in no uncertain terms that Lorem Ipsum is that huge, huge no no to forswear forever. Not so fast, I'd say, there are some redeeming factors in favor of greeking text, as its use is merely the symptom of a worse problem to take into consideration.</p>
<p>You begin with a text, you sculpt information, you chisel away what's not needed, you come to the point, make things clear, add value, you're a content person, you like words. May find some redeeming value with, wait for it, dummy copy, no less.</p>
</div>
</div>
<div class="col-md-6">
<div class="asked_item">
<h4>5. Can I use demon version for some days?</h4>
<p>Yes, you prefer the real thing, wine without sulfur based preservatives, real butter, not margarine, and so we'd like our layouts and designs to be filled with real words, with thoughts that count.</p>
</div>
</div>
</div>
</div>
</section> -->
<!--================End Asked Question Area =================-->
<!--================Get Form Area =================-->
<section class="get_form_area" id="contact">
<div class="container">
<h2 class="single_title_center">Bring some fun to your daily Jira tasks</h2>
</div>
</section>
<!--================End Get Form Area =================-->
<!--================Footer Area =================-->
<footer class="pink_footer">
<div class="pink_footer_wedget_area">
<div class="container">
<div class="row">
<div class="col-md-2 col-md-offset-1 col-xs-6">
<aside class="f_widget p_menu_widget">
<div class="p_f_w_title">
<h3>Demo pages</h3>
</div>
<ul>
<li><a href="https://db.dragonsanddeadlines.com">Demo</a></li>
<li><a href="https://db.dragonsanddeadlines.com">Demo</a></li>
<li><a href="https://db.dragonsanddeadlines.com">Demo</a></li>
<li><a href="https://db.dragonsanddeadlines.com">Demo</a></li>
</ul>
</aside>
</div>
<div class="col-md-2 col-md-offset-1 col-xs-6">
<aside class="f_widget p_support_widget">
<div class="p_f_w_title">
<h3>Our support</h3>
</div>
<ul>
<li><a href="https://tele.click/aleksandr_malyshev">Help & Support</a></li>
<li><a href="https://db.dragonsanddeadlines.com">Try Demo</a></li>
<li><a href="mailto:[email protected]">Contact Us</a></li>
<li><a href="https://morejust.foundation">Morejust</a></li>
</ul>
</aside>
</div>
<div class="col-md-3 col-md-offset-1 col-xs-6">
<aside class="f_widget p_contact_widget">
<div class="p_f_w_title">
<h3>Contact Morejust</h3>
</div>
<!-- <ul class="contact_info">
<li>E-mail :<a href="mailto:[email protected]"> [email protected]</a></li>
</ul> -->
<ul class="pink_social">
<li><a href="https://www.facebook.com/danokhlopkov"><i class="fa fa-facebook"></i></a></li>
<li><a href="https://www.linkedin.com/company/morejust"><i class="fa fa-linkedin"></i></a></li>
<li><a href="https://github.com/morejust"><i class="fa fa-github"></i></a></li>
<li><a href="https://t.me/okhlopkov"><i class="fa fa-telegram"></i></a></li>
</ul>
</aside>
</div>
<div class="col-md-2"></div>
</div>
</div>
</div>
<div class="pink_copyright">
<div class="container">
<!-- <div class="pull-left">
<a href="#"><img src="img/dash-logo.png" alt=""></a>
</div> -->
<div class="pull-right">
<p class="copyright">
<a href="https://morejust.foundation" target="_blank">Morejust</a> | Copyright ©<script>document.write(new Date().getFullYear());</script> | Template was made by <a href="https://colorlib.com" target="_blank">Colorlib</a>
</p>
</div>
</div>
</div>
</footer>
<!--================End Footer Area =================-->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="js/jquery-2.2.4.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="js/bootstrap.min.js"></script>
<!-- Rev slider js -->
<script src="vendors/revolution/js/jquery.themepunch.tools.min.js"></script>
<script src="vendors/revolution/js/jquery.themepunch.revolution.min.js"></script>
<script src="vendors/revolution/js/extensions/revolution.extension.video.min.js"></script>
<script src="vendors/revolution/js/extensions/revolution.extension.slideanims.min.js"></script>
<script src="vendors/revolution/js/extensions/revolution.extension.layeranimation.min.js"></script>
<script src="vendors/revolution/js/extensions/revolution.extension.navigation.min.js"></script>
<!-- Extra Plugin -->
<script src="vendors/parallax/jquery.parallax-scroll.js"></script>
<script src="vendors/magnific-popup/jquery.magnific-popup.min.js"></script>
<script src="vendors/owl-carousel/owl.carousel.min.js"></script>
<script src="vendors/counterup/waypoints.min.js"></script>
<script src="vendors/counterup/jquery.counterup.min.js"></script>
<script src="vendors/isotope/imagesloaded.pkgd.min.js"></script>
<script src="vendors/isotope/isotope.pkgd.min.js"></script>
<script src="vendors/flexslider/flex-slider.js"></script>
<script src="vendors/flexslider/mixitup.js"></script>
<script src="vendors/swiper/js/swiper.min.js"></script>
<script src="vendors/flipster-slider/jquery.flipster.min.js"></script>
<script src="vendors/nice-selector/jquery.nice-select.min.js"></script>
<script src="js/theme.js"></script>
</body>
</html>