-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.mustache
1079 lines (941 loc) · 47 KB
/
index.mustache
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="zxx">
<head>
<!-- Metas -->
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="keywords" content="Signal Kinetics - Open Source Scientific Development" />
<meta name="description" content="Signal Kinetics - Open Source Scientific Development" />
<meta name="author" content="" />
<!-- Title -->
<title>Signal Kinetics</title>
<!-- Favicon -->
<link rel="shortcut icon" href="https://cdn-icons-png.flaticon.com/512/947/947680.png" />
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Poppins:100,200,300,400,500,600,700,800,900&display=swap"
rel="stylesheet">
<link
href="https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@100;200;300;400;500;600;700;800;900&display=swap"
rel="stylesheet">
<!-- Plugins -->
<link rel="stylesheet" href="css/plugins.css" />
<!-- Core Style Css -->
<link rel="stylesheet" href="css/style.css" />
<!-- Memberstack -->
<script src="https://api.memberstack.io/static/memberstack.js?custom" data-memberstack-id="364dc741601f8ed38c797805d5e24ef4"> </script>
</head>
<body>
<!-- ==================== Start Loading ==================== -->
<div class="loading">
<span>S</span>
<span>I</span>
<span>G</span>
<span>N</span>
<span>A</span>
<span>L</span>
<span>-</span>
<span>K</span>
</div>
<div id="preloader">
</div>
<!-- ==================== End Loading ==================== -->
<!-- ==================== Start progress-scroll-button ==================== -->
<div class="progress-wrap cursor-pointer">
<svg class="progress-circle svg-content" width="100%" height="100%" viewBox="-1 -1 102 102">
<path d="M50,1 a49,49 0 0,1 0,98 a49,49 0 0,1 0,-98" />
</svg>
</div>
<!-- ==================== End progress-scroll-button ==================== -->
<!-- ==================== Start cursor ==================== -->
<div class="mouse-cursor cursor-outer"></div>
<div class="mouse-cursor cursor-inner"></div>
<!-- ==================== End cursor ==================== -->
<!-- ==================== Start Navbar ==================== -->
<nav class="navbar navbar-expand-lg light">
<div class="container">
<!-- Logo -->
<a class="logo" href="#">
<!--<img src="img/logo-dark.png" alt="logo">-->
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="icon-bar"><i class="fas fa-bars"></i></span>
</button>
<!-- navbar links -->
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">🏡 Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="http://dev.to/gizmotronn">Publications</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#/ms/login" data-ms-content="!members">🔑 Login</a>
</li>
<!--
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button"
aria-haspopup="true" aria-expanded="false">Works</a>
<div class="dropdown-menu">
<a class="dropdown-item" href="showcase.html">Showcase Parallax</a>
<a class="dropdown-item" href="showcase4.html">Showcase Carousel</a>
<a class="dropdown-item" href="showcase3.html">Showcase Circle</a>
<a class="dropdown-item" href="works.html">Portfolio Masonry</a>
<a class="dropdown-item" href="works2.html">Portfolio Filtering</a>
<a class="dropdown-item" href="works3.html">Portfolio Gallery</a>
</div>
</li>-->
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" data-toggle="dropdown" href="#" role="button"
aria-haspopup="true" aria-expanded="false" data-ms-content="members">⛓ Models</a> <!--Remove dropdown arrow-->
<div class="dropdown-menu">
<a class="dropdown-item" href="#ms-login">🔑 Login</a>
<a class="dropdown-item" href="https://3.basecamp.com/5181697/projects">⛺️ Basecamp</a>
<a class="dropdown-item" href="#">📑 Documentation</a> <!--Put jekyll in here (this repo underneath `docs' folder) -->
<a class="dropdown-item" href="keybase://chat/signalkinetics#general/41">💬 Keybase</a>
<a class="dropdown-item" href="#/ms/profile">👩🏻🚀 Profile</a>
<a class="dropdown-item" href="https://signal-k.slack.com/archives/C02GSLFB05N/p1634270045000500">#️⃣ Slack</a>
<a class="dropdown-item" href="https://github.com/signal-k">🙀 Github</a>
<a class="dropdown-item" href="http://glitch.com/@signal-k">👾 Glitch</a>
<a class="dropdown-item" href="https://id.unity.com/organizations?_ga=2.164008951.993223165.1632411677-1892445938.1631799282">🧱 Unity</a>
<a class="dropdown-item" href="http://sk.super.site/basic/basic">🏡 Treehouse</a> <!--Memberstack login modal SHOULD be redirecting to this after we fix the domain issue with Super.so-->
</div>
</li>
<!--<li class="nav-item">
<a class="nav-link" href="contact.html">Contact</a>
</li>-->
</ul>
</div>
</div>
</nav>
<!-- ==================== End Navbar ==================== -->
<!-- ==================== Start Slider ==================== -->
<header class="particles circle-bg valign">
<div class="container">
<div class="row justify-content-center">
<div class="col-lg-10">
<div class="cont text-center">
<h1><span class="color-font"> Signal</span> <span
class="color-font">Kinetics</span></h1>
</div>
</div>
</div>
</div>
<!-- particles -->
<div id="particles-js"></div>
<div>
<div class="gradient-circle"></div>
<div class="gradient-circle two"></div>
</div>
<div class="line bottom left"></div>
</header>
<!-- ==================== End Slider ==================== -->
<!-- ==================== Start Works ==================== -->
<section class="work-carousel2 metro section-padding">
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10">
<div class="sec-head">
<h6 class="wow fadeIn" data-wow-delay=".5s">Portfolio</h6>
<h3 class="wow color-font">Take a look at what <br> we're working on</h3>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 no-padding">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="content">
<div class="img">
<span class="imgio">
<div class="wow cimgio" data-delay="300"></div><img
src="https://miro.medium.com/max/1400/1*TNYFJ7II6zzX56TmafN32Q.jpeg" alt="">
</span>
</div>
<div class="cont">
<h6><a href="https://docs.skinetics.tech/whitepaper">Citizen Science</a></h6>
<h4><a href="https://docs.skinetics.tech/whitepaper">Data visualisation in games</a></h4>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="content">
<div class="img">
<span class="imgio">
<div class="wow cimgio" data-delay="500"></div><img
src="img/portfolio/1_nEVZyvQJNi_YJDK4QfFY5w.png" alt="">
</span>
</div>
<div class="cont">
<h6><a href="https://github.com/signal-k/dabpi">Unity & Game Development</a></h6>
<h4><a href="https://github.com/signal-k/unity-demo">Star Sailors</a></h4>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="content">
<div class="img">
<span class="imgio">
<div class="wow cimgio" data-delay="700"></div><img
src="https://images.hdqwalls.com/download/owl-minimal-dark-4k-wd-2560x1440.jpg" alt="">
</span>
</div>
<div class="cont">
<h6><a href="https://github.com/signal-k">Our Github</a></h6>
<h4><a href="https://github.com/signal-k">Click me!!</a></h4>
</div>
</div>
</div><!--Add more!!!-->
</div>
<!-- slider setting -->
<div class="swiper-button-next swiper-nav-ctrl next-ctrl">
<i class="ion-ios-arrow-right"></i>
</div>
<div class="swiper-button-prev swiper-nav-ctrl prev-ctrl">
<i class="ion-ios-arrow-left"></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ==================== End Works ==================== -->
<!-- ==================== Start About agency ==================== -->
<section class="about-us section-padding">
<div class="container">
<div class="row">
<div class="col-lg-5 valign md-mb50">
<div class="mb-50">
<h6 class="fw-300 text-u ls10 mb-10">Signal-K</h6>
<h3 class="fw-600 text-u ls1 mb-30 color-font" href="https://sk.super.site/#/ms/login">Constantly Innovating</h3>
<p>We're Signal, a collection of open-source developers. We're pushing the boundaries of web and game development to their absolute limit.</p>
<!--<a href="#0" class="butn dark curve mt-30">
<span>Read More</span>
</a>-->
</div>
</div>
<div class="col-lg-7 img">
<img src="img/Liam.png" alt="">
<div class="stauts">
<div class="item">
<h4>L.<span>H.</span></h4>
<h6>Arbuckle</h6>
</div>
<div class="item">
<h4>CTO<span><!--, COMMA USED TO BE HERE--></span></h4>
<!--<h6>since 2020</h6>-->
</div>
</div>
</div>
</div>
</div>
</section>
<section class="about-us section-padding">
<div class="container">
<div class="row">
<div class="col-lg-7 img">
<img src="img/T02FNAF6Y5V-U02GD3X2JFP-ba667cf5e271-512.jpeg" alt="">
<div class="stauts">
<div class="item">
<h4>A.<span></span></h4>
<h6>Passos</h6>
</div>
<div class="item">
<h4>Designer<span><!--, COMMA USED TO BE HERE--></span></h4>
<!--<h6>since 2020</h6>-->
</div>
</div>
</div>
<div class="col-lg-5 valign md-mb50">
<div class="mb-50">
<!--<h3 class="fw-600 text-u ls1 mb-30 color-font">Constantly Innovating</h3>-->
<p>Right now we're working on a blockchain-powered game called Star Sailors, which is being developed using the Unity game engine.</p>
<!--<a href="#0" class="butn dark curve mt-30">
<span>Read More</span>
</a>-->
</div>
</div>
</div>
</div>
</section>
<!-- ==================== End About agency ==================== -->
<!-- ==================== Start About ====================
<section class="feat sub-bg section-padding">
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10">
<div class="sec-head">
<h6 class="wow fadeIn" data-wow-delay=".5s">Best Services</h6>
<h3 class="wow color-font">We help to create strategies, design &
development.</h3>
</div>
</div>
</div>
<div class="row">
<div class="col-lg-3 col-md-6 items md-mb30">
<div class="item wow fadeIn" data-wow-delay=".3s">
<span class="icon">
<i class="ion-ios-monitor"></i>
</span>
<h5>Interface Design</h5>
<p>Implementation and rollout of new network infrastructure,
including consolidation.</p>
<a href="#0" class="more-stroke"><span></span></a>
</div>
</div>
<div class="col-lg-3 col-md-6 items active md-mb30">
<div class="item wow fadeIn" data-wow-delay=".3s">
<span class="icon">
<i class="ion-ios-bolt-outline"></i>
</span>
<h5>Creative Always</h5>
<p>Implementation and rollout of new network infrastructure,
including consolidation.</p>
<a href="#0" class="more-stroke"><span></span></a>
</div>
</div>
<div class="col-lg-3 col-md-6 items sm-mb30">
<div class="item wow fadeIn" data-wow-delay=".3s">
<span class="icon">
<i class="ion-cube"></i>
</span>
<h5>Real-time Editing</h5>
<p>Implementation and rollout of new network infrastructure,
including consolidation.</p>
<a href="#0" class="more-stroke"><span></span></a>
</div>
</div>
<div class="col-lg-3 col-md-6 items">
<div class="item wow fadeIn" data-wow-delay=".3s">
<span class="icon">
<i class="ion-ios-color-wand"></i>
</span>
<h5>Art Concept</h5>
<p>Implementation and rollout of new network infrastructure,
including consolidation.</p>
<a href="#0" class="more-stroke"><span></span></a>
</div>
</div>
</div>
</div>
</section>
<!-- ==================== End About ==================== -->
<!-- ==================== Start Minimal-Area ====================
<section class="min-area">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="img">
<img class="thumparallax-down" src="img/min-area.jpg" alt="">
</div>
</div>
<div class="col-lg-6 valign">
<div class="content">
<h4 class="color-font">Dream. Innovate. Implement.</h4>
<p class="wow txt" data-splitting>Our creative Ad agency is ranked among the finest in
the US. We cultivate smart ideas for start-ups and seasoned players. By adhering to
industry standards, we create some stunning portfolios. Company branding redefines.
</p>
<ul>
<li class="wow fadeInUp" data-wow-delay=".2s">We provide free initial
consultation and
support.</li>
<li class="wow fadeInUp" data-wow-delay=".4s">We work with some of the most
successful
businesses.</li>
</ul>
<a href="about.html" class="butn bord curve mt-40 wow fadeInUp"
data-wow-delay=".8s"><span>Discover</span></a><br>
</div>
</div>
</div>
</div>
</section>
<!-- ==================== End Minimal-Area ==================== -->
<!-- ==================== Start testimonials ==================== WHAT CAN WE REPLACE THIS WITH????
<section class="testimonials section-padding pb-0">
<div class="container-fluid position-re">
<div class="row wow fadeInUp" data-wow-delay=".5s">
<div class="col-lg-12">
<div class="slic-item">
<div class="item">
<div class="info valign">
<div class="cont">
<div class="author">
<div class="img">
<img src="img/clients/1.jpg" alt="">
</div>
<h6 class="author-name color-font">Alex Regelman</h6>
<span class="author-details">Co-founder, Colabrio</span>
</div>
</div>
</div>
<p>I would highly recommend Vie Digital. I worked with the team on an animation for our
‘Click & Collect’ service.</p>
</div>
<div class="item">
<div class="info valign">
<div class="cont">
<div class="author">
<div class="img">
<img src="img/clients/1.jpg" alt="">
</div>
<h6 class="author-name color-font">Alex Regelman</h6>
<span class="author-details">Co-founder, Colabrio</span>
</div>
</div>
</div>
<p>I would highly recommend Vie Digital. I worked with the team on an animation for our
‘Click & Collect’ service.</p>
</div>
<div class="item">
<div class="info valign">
<div class="cont">
<div class="author">
<div class="img">
<img src="img/clients/1.jpg" alt="">
</div>
<h6 class="author-name color-font">Alex Regelman</h6>
<span class="author-details">Co-founder, Colabrio</span>
</div>
</div>
</div>
<p>I would highly recommend Vie Digital. I worked with the team on an animation for our
‘Click & Collect’ service.</p>
</div>
<div class="item">
<div class="info valign">
<div class="cont">
<div class="author">
<div class="img">
<img src="img/clients/1.jpg" alt="">
</div>
<h6 class="author-name color-font">Alex Regelman</h6>
<span class="author-details">Co-founder, Colabrio</span>
</div>
</div>
</div>
<p>I would highly recommend Vie Digital. I worked with the team on an animation for our
‘Click & Collect’ service.</p>
</div>
</div>
</div>
</div>
<div class="arrows">
<div class="container">
<div class="next cursor-pointer">
<span class="pe-7s-angle-right"></span>
</div>
<div class="prev cursor-pointer">
<span class="pe-7s-angle-left"></span>
</div>
</div>
</div>
</div>
</section>
==================== End testimonials ==================== -->
<!-- ==================== Start Team ====================
<div class="team-crv section-padding">
<div class="container">
<div class="row">
<div class="col-lg-5 valign">
<div class="content wow fadeInUp md-mb50" data-wow-delay=".5s">
<div class="sub-title">
<h6>Our Team</h6>
<span></span>
<span></span>
<span></span>
</div>
<h3 class="co-tit custom-font mb-15">We are changing the world</h3>
<p>Our goal is to provide methods for entertainment-based media to be used in a productive environment</p>
<!--<div class="skills-box mt-40">
<div class="skill-item">
<h6 class="custom-font">UI / UX Design</h6>
<div class="skill-progress">
<div class="progres custom-font" data-value="90%"></div>
</div>
</div>
<div class="skill-item">
<h6 class="custom-font">Apps Development</h6>
<div class="skill-progress">
<div class="progres custom-font" data-value="80%"></div>
</div>
</div>
</div>--><!--
</div>
</div>
<div class="col-lg-6 offset-lg-1">
<div class="img-box">
<div class="row">
<div class="col-sm-6 toright">
<div class="full-width">
<div class="img sizxl mb-30" data-tooltip-tit="Stephanie Lawrence"
data-tooltip-sub="CEO, Colabrio Media">
<img src="img/team/1.jpg" alt="" class="imago wow">
</div>
<div class="img sizmd" data-tooltip-tit="Alex Regelman"
data-tooltip-sub="Co-Founder, Colabrio Media">
<img src="img/team/2.jpg" alt="" class="imago wow">
</div>
</div>
</div>
<div class="col-sm-6 toleft valign">
<div class="full-width text-left">
<div class="img sizmd mb-30" data-tooltip-tit="Stacey Stamper"
data-tooltip-sub="Network Partner, Colabrio Media">
<img src="img/team/3.jpg" alt="" class="imago wow">
</div>
<div class="img sizsm" data-tooltip-tit="Stephanie Lawrence"
data-tooltip-sub="CEO, Colabrio Media">
<img src="img/team/4.jpg" alt="" class="imago wow">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- ==================== End Team ==================== -->
<!-- ==================== Start Blog ==================== (Will fill in when we get some press releases ready)
<section class="blog-crv sub-bg">
<div class="stories">
<div class="container-fluid">
<div class="row">
<div class="col-lg-6 no-padding">
<div class="swiper-container swiper-img">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="item wow fadeIn" data-wow-delay=".3s">
<div class="img">
<img class="thumparallax" src="img/blog/1.jpg" alt="">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="item wow fadeIn" data-wow-delay=".3s">
<div class="img">
<img class="thumparallax" src="img/blog/2.jpg" alt="">
</div>
</div>
</div>
<div class="swiper-slide">
<div class="item wow fadeIn" data-wow-delay=".3s">
<div class="img">
<img class="thumparallax" src="img/blog/3.jpg" alt="">
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col-lg-6 no-padding valign">
<div class="swiper-container swiper-content">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="item wow fadeIn" data-wow-delay=".6s">
<div class="content">
<div class="tags">
<a href="#0">Trending</a>
</div>
<div class="info">
<a href="#0">
<i class="far fa-clock"></i>
06 Aug 2019
</a>
<a href="#0">
by Alex Morgan
</a>
</div>
<div class="title">
<h4><a href="#0">Create The Lifestyle You
Really Desire This World</a>
</h4>
</div>
<div class="text">
<p>Success is no accident. It is hard work, perseverance,
learning,
studying, sacrifice and most of all, love of what you
are doing.
</p>
</div>
<div class="more">
<a href="blog-details.html">Read More</a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="item wow fadeIn" data-wow-delay=".6s">
<div class="content">
<div class="tags">
<a href="#0">Trending</a>
</div>
<div class="info">
<a href="#0">
<i class="far fa-clock"></i>
06 Aug 2019
</a>
<a href="#0">
by Alex Morgan
</a>
</div>
<div class="title">
<h4><a href="#0">List of The Best Investment
Projects</a></h4>
</div>
<div class="text">
<p>Success is no accident. It is hard work, perseverance,
learning,
studying, sacrifice and most of all, love of what you
are doing.
</p>
</div>
<div class="more">
<a href="blog-details.html">Read More</a>
</div>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="item wow fadeIn" data-wow-delay=".6s">
<div class="content">
<div class="tags">
<a href="#0">Trending</a>
</div>
<div class="info">
<a href="#0">
<i class="far fa-clock"></i>
06 Aug 2019
</a>
<a href="#0">
by Alex Morgan
</a>
</div>
<div class="title">
<h4><a href="#0">World Best Business Website
Company</a></h4>
</div>
<div class="text">
<p>Success is no accident. It is hard work, perseverance,
learning,
studying, sacrifice and most of all, love of what you
are doing.
</p>
</div>
<div class="more">
<a href="blog-details.html">Read More</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
slider setting
<div class="controls">
<div class="swiper-button-next swiper-nav-ctrl next-ctrl">
<i class="fas fa-caret-up"></i>
</div>
<div class="swiper-button-prev swiper-nav-ctrl prev-ctrl">
<i class="fas fa-caret-down"></i>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
</section>
==================== End Blog ==================== -->
<!-- ==================== Start call-to-action ====================
<section class="call-action section-padding bg-img" data-background="img/patrn.svg">
<div class="container">
<div class="row">
<div class="col-md-8 col-lg-9">
<div class="content sm-mb30">
<h6 class="wow" data-splitting>Let’s Talk</h6>
<h2 class="wow" data-splitting>about <br> <b class="back-color">game dev</b>.</h2>
</div>
</div>
<div class="col-md-4 col-lg-3 valign">
<a href="mailto:liam@skinetics.tech" class="butn bord curve wow fadeInUp" data-wow-delay=".5s"><span>Get In
Touch</span></a>
</div>
</div>
</div>
</section>
<section class="work-carousel2 metro section-padding">
<div class="container">
<div class="row">
<div class="col-lg-8 col-md-10">
<div class="sec-head">
<h6 class="wow fadeIn" data-wow-delay=".5s">Portfolio</h6>
<h3 class="wow color-font">Take a look at what <br> we're working on</h3>
</div>
</div>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-lg-12 no-padding">
<div class="swiper-container">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="content">
<div class="img">
<span class="imgio">
<div class="wow cimgio" data-delay="300"></div><img
src="https://miro.medium.com/max/1400/1*TNYFJ7II6zzX56TmafN32Q.jpeg" alt="">
</span>
</div>
<div class="cont">
<h6><a href="project-details2.html">Citizen Science</a></h6>
<h4><a href="project-details2.html">Data visualisation in games</a></h4>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="content">
<div class="img">
<span class="imgio">
<div class="wow cimgio" data-delay="500"></div><img
src="img/portfolio/1_nEVZyvQJNi_YJDK4QfFY5w.png" alt="">
</span>
</div>
<div class="cont">
<h6><a href="project-details2.html">Unity & Game Development</a></h6>
<h4><a href="project-details2.html">Star Sailors</a></h4>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="content">
<div class="img">
<span class="imgio">
<div class="wow cimgio" data-delay="700"></div><img
src="https://images.hdqwalls.com/download/owl-minimal-dark-4k-wd-2560x1440.jpg" alt="">
</span>
</div>
<div class="cont">
<h6><a href="https://github.com/signal-k">Our Github</a></h6>
<h4><a href="https://github.com/signal-k">Click me!!</a></h4>
</div>
</div>
</div><!--Add more!!!--
</div>
<!-- slider setting --
<div class="swiper-button-next swiper-nav-ctrl next-ctrl">
<i class="ion-ios-arrow-right"></i>
</div>
<div class="swiper-button-prev swiper-nav-ctrl prev-ctrl">
<i class="ion-ios-arrow-left"></i>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- ==================== End call-to-action ==================== -->
<footer>
<div class="container">
<div class="row">
<div class="col-md-4 col-sm-6 col-xs-12">
<span class="logo"></br>Signal Kinetics </br> PTY LTD</span>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<ul class="menu">
<span>Menu</span>
<li>
<a href="http://sk.super.site/documentation">Documentation</a>
</li>
<li>
<a href="https://la7.skinetics.tech">Liam Arbuckle</a>
</li>
<li>
<a href="http://driwwwle.com/gizmotronn">Driwwwle</a>
</li>
</ul>
</div>
<div class="col-md-4 col-sm-6 col-xs-12">
<ul class="address">
<span>Contact</span>
<li>
<i class="fa fa-phone" aria-hidden="true"></i>
<a href="tel:+61481601669">+61 481 601 669</a>
</li>
<li>
<i class="fa fa-map-marker" aria-hidden="true"></i>
<a href="https://goo.gl/maps/hxt5A4K8snxJvXim9">140 St George's Terrace, Perth</a>
</li>
<li>
<i class="fa fa-envelope" aria-hidden="true"></i>
<a href="mailto:liam@skinetics.tech">liam@skinetics.tech</a>
</li>
</ul>
</div>
</div>
</div>
</footer>
<style>
@import url('https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900');
body {
font-family: 'Roboto', sans-serif;
}
.search-text {
margin-top: 50px;
background-color: #272d33;
padding-top: 60px;
padding-bottom: 60px;
}
.search-text .input-search {
height: 45px;
width: 40%;
padding-left: 20px;
color: #333;
}
.search-text .btn-search {
background: #da3e44;
border: none;
color: #FFF;
height: 45px;
width: 80px;
}
.search-text h4 {
color: #FFF;
font-weight: 700;
}
footer {
background-color: #33383c;
padding: 30px 0px;
}
.logo {
color: #FFF;
font-weight: 700;
font-size: 30px;
}
.address span,
.menu span {
color: #FFF;
font-weight: bold;
border-bottom: 1px solid #c7c7c7;
padding: 10px 0px;
display: block;
text-transform: uppercase;
font-size: 16px;
letter-spacing: 3px;
}
.address li a,
.menu li a {
color: #FFF;
letter-spacing: 3px;
text-decoration: none;
font-size: 14px;
}
.address li,
.menu li {
margin: 20px 0px;
list-style: none;
}
.address li a:hover,
.menu li a:hover {
color: #da3e44;
transition: all 1s ease-in-out;
-webkit-transition: all 1s ease-in-out;
-moz-transition: all 1s ease-in-out;
-o-transition: all 1s ease-in-out;
}
.address .fa {
color: #da3e44;
margin-right: 10px;
font-size: 18px;
}
</style>
<!-- ==================== Start Footer ====================
<footer class="sub-bg">
<div class="container">
<div class="row">
<div class="col-lg-4">
<div class="item md-mb50">
<div class="title">
<h5>Contact Us</h5>
</div>
<ul>
<li>
<span class="icon pe-7s-map-marker"></span>
<div class="cont">
<h6>Office Address</h6>
<p>108 Beaufort Street,
WA 6000, Australia</p>