-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
1914 lines (1030 loc) · 59.9 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
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>
<!-- CHARSET -->
<meta charset="utf-8">
<!-- META -->
<meta name="robots" content="noodp" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0">
<meta name="Keywords" content="one, page, template, modern, premium, exclusive">
<meta name="description" content="Premium html one page template available exclusively on themeforest.">
<!-- PAGE TITLE -->
<title> Lambda Factory </title>
<!-- FAVICON -->
<link rel="apple-touch-icon" sizes="180x180" href="/assets/images/icons/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/assets/images/icons/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/assets/images/icons/favicon-16x16.png">
<link rel="manifest" href="/assets/images/icons/site.webmanifest">
<link rel="mask-icon" href="/assets/images/icons/safari-pinned-tab.svg" color="#5bbad5">
<link rel="shortcut icon" href="/assets/images/icons/favicon-32x32.png">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="msapplication-config" content="/assets/images/icons/browserconfig.xml">
<meta name="theme-color" content="#ffffff">
<!-- GOOGLE FONTS -->
<link href="https://fonts.googleapis.com/css?family=Dosis:200,300,400,500,600,700,800|Open+Sans:300,400,600,700,800" rel="stylesheet">
<!-- STYLESHEETS CORE -->
<link rel="stylesheet" type="text/css" href="assets/css/plugins.css">
<!-- STYLESHEETS TEMPLATE -->
<link rel="stylesheet" type="text/css" href="assets/css/layout.css">
<link rel="stylesheet" type="text/css" href="assets/css/hero.css">
<link rel="stylesheet" type="text/css" href="assets/css/blocks.css">
<link rel="stylesheet" type="text/css" href="assets/css/custom.css">
<!-- STYLESHEET TEMPLATE COLOR -->
<link rel="stylesheet" type="text/css" href="assets/css/color/deep-orange.css">
</head>
<body>
<!-- PAGE LOADER -->
<div id="page-loader">
<!-- CONTAINER MID -->
<div class="container-mid">
<img src="assets/images/loading-logo.png" class="img-responsive" alt="image">
<!-- SPINNER CONTAINER -->
<div class="spinner-container">
<div class="css-spinner"></div>
</div>
<!-- /SPINNER CONTAINER -->
</div>
<!-- /CONTAINER MID -->
</div>
<!-- /PAGE LOADER -->
<!-- MAIN -->
<div id="main">
<!-- HERO -->
<section id="hero" class="hero hero-1">
<!-- FRONT CONTENT -->
<div class="front-content page-enter-animated">
<!-- CONTAINER MID -->
<div class="container-mid">
<!-- INNER FRONT CONTENT -->
<div class="inner 3d-hover">
<h1>Lambda Factory</h1>
<p>We create the software of tomorrow today.</p>
</div>
<!-- /INNER FRONT CONTENT -->
</div>
<!-- /CONTAINER MID -->
<div class="scroll-down"></div>
<!-- CONTROLS -->
<div class="controls">
<i class="volume-button fa fa-volume-up"></i>
<i class="pause-button ti-control-pause"></i>
</div>
<!--/ CONTROLS -->
</div>
<!-- /FRONT CONTENT -->
<!-- BACKGROUND CONTENT -->
<div class="background-content page-enter-animated">
<!-- LEVEL 1 -->
<div class="level-1">
<div class="bg-overlay"></div>
<div class="bg-pattern"></div>
<div id="canvas"><canvas class="bg-effect layer" data-depth="0.2"></canvas></div>
</div>
<!-- /LEVEL 1 -->
<!-- LEVEL 2 -->
<div class="level-2">
<!-- PARALLAX BACKGROUND -->
<div class="dzsparallaxer auto-init allbody" data-options="{ mode_scroll: 'fromtop', animation_duration: '2' , direction: 'reverse' }">
<!-- PARALLAX TARGET -->
<div class="dzsparallaxer--target">
<div class="bg-image layer" data-depth="0.04"></div>
<div class="bg-video layer" data-depth="0.04"></div>
<div class="bg-color layer" data-depth="0.04"></div>
</div>
<!-- /PARALLAX TARGET -->
</div>
<!-- /PARALLAX BACKGROUND -->
</div>
<!-- /LEVEL 2 -->
</div>
<!-- /BACKGROUND CONTENT -->
</section>
<!-- /HERO -->
<!-- NAVIGATION -->
<nav class="navigation-main">
<!-- CONTAINER -->
<div class="container">
<!-- NAVIGATION HEADER -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar">
<span class="ti-menu"></span>
</button>
<a class="navbar-brand" href="#"><img class="img-responsive" src="assets/images/LogoWithName.png" alt="" /></a>
</div>
<!-- /NAVIGATION HEADER -->
<!-- NAVBAR -->
<div id="navbar" class="navbar-collapse collapse">
<!-- MENU ITEMS LIST -->
<ul class="navigation-items nav navbar-nav navbar-right">
<li> <a class="phantom" href="#hero">Home</a> </li>
<li> <a href="#about">About</a> </li>
<li> <a href="#service">Services</a> </li>
<li> <a href="#work">Projects</a> </li>
<li> <a href="#process">Process</a> </li>
<li> <a href="#clients">Clients</a> </li>
<li> <a href="#contact">Contact</a> </li>
</ul>
<!-- /MENU ITEMS LIST -->
</div>
<!-- /NAVBAR -->
</div>
<!-- /CONTAINER -->
</nav>
<!-- /NAVIGATION -->
<!-- ABOUT -->
<section id="about">
<!-- CONTENT -->
<div class="content bg-white block-about-1 padding-top-140 padding-bot-130">
<!-- CONTAINER -->
<div class="container text-left">
<!-- HEADER -->
<div class="header text-center scroll-animated-from-bottom">
<h1>About</h1>
</div>
<!-- /HEADER -->
<!-- ROW -->
<div class="row padding-top-50">
<!-- COLUMN -->
<div class="col-sm-6">
<img class="img-responsive scroll-animated-from-bottom" src="assets/images/about/2.jpg" alt="">
<p class="scroll-animated-from-bottom">
Our team includes experienced software engineers and well-known members of open-source community, who helps companies design, engineer, and iterate on their most important digital products.
<br>
<br>
Our approach delivers better applications and better teams. Close collaboration allows us to design and engineer applications that integrate seamlessly into existing infrastructures
while also exposing your team to best practices and new processes. This is how we support companies safely and successfully transition to modern technologies.
<br>
</p>
</div>
<!-- /COLUMN -->
<!-- COLUMN -->
<div class="col-sm-6">
<h3 class="scroll-animated-from-bottom">
We help you<br>
build software <br>
that transforms your business. <br>
</h3>
<p class="scroll-animated-from-bottom">
Lambda Factory is software consultancy company specializing in designing and building complex system
using modern, cutting edge technologies focused around functional programming languages,
such as F#, Elm, and Elixir and cloud platforms like Microsoft Azure. Whether you need a full stack engagement,
consulting, training, code and design audits we offer services that can take your project to the next level.
</p>
<img class="img-responsive scroll-animated-from-bottom" src="assets/images/about/1.jpg" alt="">
</div>
<!-- /COLUMN -->
</div>
<!-- ROW -->
</div>
<!-- /CONTAINER -->
</div>
<!-- /CONTENT -->
</section>
<!-- /ABOUT -->
<!-- SERVICE -->
<section id="service">
<!-- CONTENT -->
<div class="content bg-black bg-parallax block-service-1 padding-top-130 padding-bot-200">
<!-- CONTAINER -->
<div class="container">
<!-- HEADER -->
<div class="header text-center">
<h1>Services</h1>
</div>
<!-- /HEADER -->
<!-- TAB NAVIGATION -->
<ul class="tab-navigation clearfix">
<!-- ITEM -->
<li class="active scroll-animated-from-bottom">
<!-- TAB LINK -->
<a href="#service-data-1" data-toggle="tab">
<span class="ti-layers"></span>Software Development
</a>
<!-- /TAB LINK -->
</li>
<!--
/ITEM -->
<!-- ITEM -->
<li class="scroll-animated-from-bottom">
<!-- TAB LINK -->
<a href="#service-data-2" data-toggle="tab">
<span class="ti-light-bulb"></span>Consulting
</a>
<!-- /TAB LINK -->
</li>
<!-- /ITEM -->
<!-- ITEM -->
<li class="scroll-animated-from-bottom">
<!-- TAB LINK -->
<a href="#service-data-3" data-toggle="tab">
<span class="ti-blackboard"></span>Training
</a>
<!-- /TAB LINK -->
</li>
<!-- /ITEM -->
<!-- ITEM -->
<li class="scroll-animated-from-bottom">
<!-- TAB LINK -->
<a href="#service-data-4" data-toggle="tab">
<span class="ti-star"></span>Developer Relations
</a>
<!-- /TAB LINK -->
</li>
<!-- /ITEM -->
<!-- ITEM -->
<li class="scroll-animated-from-bottom">
<!-- TAB LINK -->
<a href="#service-data-5" data-toggle="tab">
<span class="ti-world"></span>Open Source Development
</a>
<!-- /TAB LINK -->
</li>
<!-- /ITEM -->
</ul>
<!-- /TAB NAVIGATION -->
<!-- TAB CONTENT CONTAINER -->
<div class="tab-content scroll-animated-from-bottom">
<!-- TAB CONTENT 1 -->
<div class="tab-pane fade in active" id="service-data-1">
<!-- ROW -->
<div class="row">
<!-- COLUMN -->
<div class="col-md-4">
<h4>We build the software.<br>Get your business on the next level.<br>Custom crafted business solutions.</h4>
</div>
<!-- /COLUMN -->
<!-- COLUMN -->
<div class="col-md-8">
<p>
We are experts in building complex business solutions that perfectly fits your needs.
We use cutting-edge technologies to reduce time to market, ensure software correctness and high quality.
Our approach is focused on working closely with product owners, and potential users to make sure that
designed product fulfils all your needs.
</p>
</div>
<!-- /COLUMN -->
</div>
<!-- /ROW -->
</div>
<!-- /TAB CONTENT 1 -->
<!-- TAB CONTENT 2 -->
<div class="tab-pane fade" id="service-data-2">
<!-- ROW -->
<div class="row">
<!-- COLUMN -->
<div class="col-md-4">
<h4>Working with existing teams.<br>Providing expert knowledge.<br>Helping your teams grow.</h4>
</div>
<!-- /COLUMN -->
<!-- COLUMN -->
<div class="col-md-8">
<p>
We provide wide variety of consulting services, starting from working on the development of the products together with your teams,
ending at code reviews and design audits. Our team includes technology experts, authors of popular libraries and experienced software
engineers that will work with your teams to help you build high quality software using modern technologies and best practices.
</p>
</div>
<!-- /COLUMN -->
</div>
<!-- /ROW -->
</div>
<!-- /TAB CONTENT 2 -->
<!-- TAB CONTENT 3 -->
<div class="tab-pane fade" id="service-data-3">
<!-- ROW -->
<div class="row">
<!-- COLUMN -->
<div class="col-md-4">
<h4>Introduction to F#.<br>Full stack F# web development with SAFE.<br>Saturn deep dive.</h4>
</div>
<!-- /COLUMN -->
<!-- COLUMN -->
<div class="col-md-8">
<p>
We provide insight, resources, and the knowledge your team can learn and grow from to ensure comfort and success moving forward.
We train your team on-site or over the web on any of our technologies and methods - including F#, SAFE Stack and Saturn.
Engagements typically last two days and are appropriate for all skill levels. Our training in basics, testing, working with back ends, deployment,
and optimization can enhance your team’s skills or help onboard your new engineers without slowing down your existing team.
</p>
</div>
<!-- /COLUMN -->
</div>
<!-- /ROW -->
</div>
<!-- /TAB CONTENT 3 -->
<!-- TAB CONTENT 4 -->
<div class="tab-pane fade" id="service-data-4">
<!-- ROW -->
<div class="row">
<!--
COLUMN -->
<div class="col-md-4">
<h4>Promoting your developer focused projects.<br>Professional content creation.<br>Get epic content for your business.</h4>
</div>
<!-- /COLUMN -->
<!-- COLUMN -->
<div class="col-md-8">
<p>
Our team includes authors of popular libraries and tools for developers, well known members of online communities, international speakers
that will work with you to promote your projects by creating content, promoting them online and speaking at the biggest conferences.
</p>
</div>
<!-- /COLUMN -->
</div>
<!-- /ROW -->
</div>
<!-- /TAB CONTENT 4 -->
<!-- TAB CONTENT 5 -->
<div class="tab-pane fade" id="service-data-5">
<!-- ROW -->
<div class="row">
<!-- COLUMN -->
<div class="col-md-4">
<h4>Introducing open source methodologies.<br>Building online communities.<br>Collaborate with your users.</h4>
</div>
<!-- /COLUMN -->
<!-- COLUMN -->
<div class="col-md-8">
<p>
All members of our team are open source software developers, including authors of well known, popular projects, experts in open source methodologies.
We can help you open source existing projects, or design your new projects with community and collaboration in mind. We will also help you set up
best practices that will help you grow your online community, make collaboration with developers easy, and ensure bright future of the projects.
</p>
</div>
<!-- /COLUMN -->
</div>
<!-- /ROW -->
</div>
<!-- /TAB CONTENT 5 -->
</div>
<!-- /TAB CONTENT CONTAINER -->
</div>
<!-- /CONTAINER -->
<!-- PARALLAX BACKGROUND -->
<div class="dzsparallaxer auto-init do-not-set-js-height" data-options="{ mode_scroll: 'normal', animation_duration: '0' , direction: 'reverse' }">
<div class="divimage dzsparallaxer--target" style="background-image: url(assets/images/parallax/1.jpg)"></div>
<div class="bg-overlay-section"></div>
</div>
<!-- /PARALLAX BACKGROUND -->
</div>
<!-- /CONTENT -->
</section>
<!-- /SERVICE -->
<!-- WORK -->
<section id="work">
<!-- CONTENT -->
<div class="content bg-white block-work-1 padding-top-140 padding-bot-140">
<!-- CONTAINER -->
<div class="container text-center">
<!-- HEADER -->
<div class="header text-center scroll-animated-from-bottom">
<h1>Our Projects</h1>
</div>
<!-- /HEADER -->
<!-- GRID -->
<div class="cbp work-grid">
<!-- ITEM -->
<div class="cbp-item">
<!-- CAPTION -->
<a href="http://ionide.io" class="cbp-caption scroll-animated-from-bottom">
<!-- CAPTION WRAPPER DEFAULT -->
<div class="cbp-caption-defaultWrap">
<img src="assets/images/work/ionide.png" alt="work">
</div>
<!-- /CAPTION WRAPPER DEFAULT -->
<!-- CAPTION WRAPPER ACTIVE -->
<div class="cbp-caption-activeWrap">
<!-- CAPTION BODY -->
<div class="cbp-l-caption-alignCenter">
<!-- CAPTION BODY INNER -->
<div class="cbp-l-caption-body">
<h5 class="hover-animated">Ionide</h5>
<p class="hover-animated">Cross platform F# IDE</p>
</div>
<!-- /CAPTION BODY INNER -->
</div>
<!-- /CAPTION BODY -->
</div>
<!-- /CAPTION WRAPPER ACTIVE -->
</a>
<!-- /CAPTION -->
</div>
<!-- /ITEM -->
<!-- ITEM -->
<div class="cbp-item">
<!-- CAPTION -->
<a href="https://saturnframework.org" class="cbp-caption scroll-animated-from-bottom">
<!-- CAPTION WRAPPER DEFAULT -->
<div class="cbp-caption-defaultWrap">
<img src="assets/images/work/saturn.png" alt="work">
</div>
<!-- /CAPTION WRAPPER DEFAULT -->
<!-- CAPTION WRAPPER ACTIVE -->
<div class="cbp-caption-activeWrap">
<!-- CAPTION BODY -->
<div class="cbp-l-caption-alignCenter">
<!-- CAPTION BODY INNER -->
<div class="cbp-l-caption-body">
<h5 class="hover-animated">Saturn</h5>
<p class="hover-animated">Powerful F# web framework</p>
</div>
<!-- /CAPTION BODY INNER -->
</div>
<!-- /CAPTION BODY -->
</div>
<!-- /CAPTION WRAPPER ACTIVE -->
</a>
<!-- /CAPTION -->
</div>
<!-- /ITEM -->
<!-- ITEM -->
<div class="cbp-item">
<!-- CAPTION -->
<a href="https://gumroad.com/l/NeptunePlugin" class="cbp-caption scroll-animated-from-bottom">
<!-- CAPTION WRAPPER DEFAULT -->
<div class="cbp-caption-defaultWrap">
<img src="assets/images/work/neptune.png" alt="work">
</div>
<!-- /CAPTION WRAPPER DEFAULT -->
<!-- CAPTION WRAPPER ACTIVE -->
<div class="cbp-caption-activeWrap">
<!-- CAPTION BODY -->
<div class="cbp-l-caption-alignCenter">
<!-- CAPTION BODY INNER -->
<div class="cbp-l-caption-body">
<h5 class="hover-animated">Neptune</h5>
<p class="hover-animated">Test runner for VSCode</p>
</div>
<!-- /CAPTION BODY INNER -->
</div>
<!-- /CAPTION BODY -->
</div>
<!-- /CAPTION WRAPPER ACTIVE -->
</a>
<!-- /CAPTION -->
</div>
<!-- /ITEM -->
<!-- ITEM -->
<div class="cbp-item">
<!-- CAPTION -->
<a href="https://github.com/LambdaFactory/Fornax" class="cbp-caption scroll-animated-from-bottom">
<!-- CAPTION WRAPPER DEFAULT -->
<div class="cbp-caption-defaultWrap">
<img src="assets/images/work/fornax.png" alt="work">
</div>
<!-- /CAPTION WRAPPER DEFAULT -->
<!-- CAPTION WRAPPER ACTIVE -->
<div class="cbp-caption-activeWrap">
<!-- CAPTION BODY -->
<div class="cbp-l-caption-alignCenter">
<!-- CAPTION BODY INNER -->
<div class="cbp-l-caption-body">
<h5 class="hover-animated">Fornax</h5>
<p class="hover-animated">Static site generator using F# DSL</p>
</div>
<!-- /CAPTION BODY INNER -->
</div>
<!-- /CAPTION BODY -->
</div>
<!-- /CAPTION WRAPPER ACTIVE -->
</a>
<!-- /CAPTION -->
</div>
<!-- /ITEM -->
<!-- ITEM -->
<div class="cbp-item">
<!-- CAPTION -->
<a href="https://safe-stack.github.io/" class="cbp-caption scroll-animated-from-bottom">
<!-- CAPTION WRAPPER DEFAULT -->
<div class="cbp-caption-defaultWrap">
<img src="assets/images/work/safe.png" alt="work">
</div>
<!-- /CAPTION WRAPPER DEFAULT -->
<!-- CAPTION WRAPPER ACTIVE -->
<div class="cbp-caption-activeWrap">
<!-- CAPTION BODY -->
<div class="cbp-l-caption-alignCenter">
<!-- CAPTION BODY INNER -->
<div class="cbp-l-caption-body">
<h5 class="hover-animated">SAFE</h5>
<p class="hover-animated">Full stack web development in F#</p>
</div>
<!-- /CAPTION BODY INNER -->
</div>
<!-- /CAPTION BODY -->
</div>
<!-- /CAPTION WRAPPER ACTIVE -->
</a>
<!-- /CAPTION -->
</div>
<!-- /ITEM -->
<!-- ITEM -->
<div class="cbp-item">
<!-- CAPTION -->
<a href="https://github.com/LambdaFactory/Tennis" class="cbp-caption scroll-animated-from-bottom">
<!-- CAPTION WRAPPER DEFAULT -->
<div class="cbp-caption-defaultWrap">
<img src="assets/images/work/tennis.png" alt="work">
</div>
<!-- /CAPTION WRAPPER DEFAULT -->
<!-- CAPTION WRAPPER ACTIVE -->
<div class="cbp-caption-activeWrap">
<!-- CAPTION BODY -->
<div class="cbp-l-caption-alignCenter">
<!-- CAPTION BODY INNER -->
<div class="cbp-l-caption-body">
<h5 class="hover-animated">Tennis</h5>
<p class="hover-animated">Static content server for developers and designers</p>
</div>
<!-- /CAPTION BODY INNER -->
</div>
<!-- /CAPTION BODY -->
</div>
<!-- /CAPTION WRAPPER ACTIVE -->
</a>