-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
805 lines (711 loc) · 31.4 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
<html lang="en" class=" js no-touch csstransitions">
<head>
<meta charset="utf-8">
<title>CrewCloud | CCIS Open Cloud | An NU Crew Project</title>
<meta name="description" content="An OpenStack Cloud for Students, Faculty and Staff of Northeastern University">
<meta name="author" content="htmlcoder.me">
<!-- Mobile Meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Web Fonts -->
<link href="//fonts.googleapis.com/css?family=Open+Sans:400italic,700italic,400,700,300&subset=latin,latin-ext" rel="stylesheet" type="text/css">
<link href="//fonts.googleapis.com/css?family=Raleway:700,400,300" rel="stylesheet" type="text/css">
<!-- Bootstrap core CSS -->
<link href="bootstrap/css/bootstrap.css" rel="stylesheet">
<!-- Font Awesome CSS -->
<link href="fonts/font-awesome/css/font-awesome.css" rel="stylesheet">
<!-- Plugins -->
<link href="css/animations.css" rel="stylesheet">
<!-- Worthy core CSS file -->
<link href="css/style.css" rel="stylesheet">
<!-- Custom css -->
<link href="css/custom.css" rel="stylesheet">
</head>
<body class="no-trans scroll-spy fixed-header-on" data-twttr-rendered="true">
<!-- scrollToTop -->
<!-- ================ -->
<div class="scrollToTop"><i class="icon-up-open-big"></i></div>
<!-- header start -->
<!-- ================ -->
<header class="header fixed clearfix navbar navbar-fixed-top">
<div class="container">
<div class="row">
<div class="col-md-4">
<!-- header-left start -->
<!-- ================ -->
<div class="header-left">
<!-- logo -->
<div class="logo smooth-scroll">
<a href="#banner"><!--<img id="logo" src="images/logo.png" alt="Worthy">--></a>
</div>
<!-- name-and-slogan -->
<div class="site-name-and-slogan smooth-scroll">
<div class="site-name"><a href="#banner">CrewCloud</a></div>
<div class="site-slogan">CCIS Open Cloud Project</div>
</div>
</div>
<!-- header-left end -->
</div>
<div class="col-md-8">
<!-- header-right start -->
<!-- ================ -->
<div class="header-right clearfix">
<!-- main-navigation start -->
<!-- ================ -->
<div class="main-navigation animated">
<!-- navbar start -->
<!-- ================ -->
<nav class="navbar navbar-default" role="navigation">
<div class="container-fluid">
<!-- Toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-collapse-1">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse scrollspy smooth-scroll" id="navbar-collapse-1">
<ul class="nav navbar-nav navbar-right">
<li class=""><a href="#banner">Home</a></li>
<li class=""><a href="#about">What is it?</a></li>
<li class=""><a href="#services">What Next?</a></li>
<li class="active"><a href="#contact">Contact</a></li>
<li class="active"><a href="https://dashboard.cloud.northeastern.me/horizon/">Login</a></li>
</ul>
</div>
</div>
</nav>
<!-- navbar end -->
</div>
<!-- main-navigation end -->
</div>
<!-- header-right end -->
</div>
</div>
</div>
</header>
<!-- header end -->
<!-- banner start -->
<!-- ================ -->
<div id="banner" class="banner">
<div class="banner-image" style="position: relative; z-index: 0; background: none;"><div class="backstretch" style="left: 0px; top: 0px; overflow: hidden; margin: 0px; padding: 0px; height: 934px; width: 1175px; z-index: -999998; position: absolute;"><img src="/images/banner.jpg" style="position: absolute; margin: 0px; padding: 0px; border: none; width: 1410px; height: 934px; max-height: none; max-width: none; z-index: -999999; left: -117.5px; top: 0px;"></div></div>
<div class="banner-caption">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2 object-non-visible animated object-visible fadeIn" data-animation-effect="fadeIn">
<h1 class="text-center">CrewCloud is <span>Built</span></h1>
<p class="lead text-center">The CrewCloud project has been in the works for years at CCIS and we can see public beta on the horizon.
</p>
</div>
</div>
</div>
</div>
</div>
<!-- banner end -->
<!-- section start -->
<!-- ================ -->
<div class="section clearfix object-non-visible animated object-visible fadeIn" data-animation-effect="fadeIn">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 id="about" class="title text-center">About <span>CrewCloud</span></h1>
<p class="lead text-center">CrewCloud is a space for students, faculty, and staff of Northeastern University</p>
<div class="space"></div>
<div class="row">
<div class="col-md-6">
<img src="images/section-image-1.png" alt="">
<div class="space"></div>
</div>
<div class="col-md-6">
<p>Our first and foremost goal is to have CrewCloud service the College directly, that means that it will serve CCIS Systems as a test environment; However, there are many other tasks for this computing power. For example: </p>
<p></p>
<ul class="list-unstyled">
<li><i class="fa fa-caret-right pr-10 text-colored"></i> Student Project Hosting</li>
<li><i class="fa fa-caret-right pr-10 text-colored"></i> DevOps Experience and Training</li><li><i class="fa fa-caret-right pr-10 text-colored"></i> Classwork Hosting space</li>
<li><i class="fa fa-caret-right pr-10 text-colored"></i> Faculty Project Hosting Space</li>
<li><i class="fa fa-caret-right pr-10 text-colored"></i> Hadoop Computing Cluster</li>
</ul>
</div>
</div>
<div class="space"></div>
<h2>How does it Work?</h2>
<div class="row">
<div class="col-md-6">
<p>CrewCloud is built on the OpenStack cloud platform, an Open Source project that manages clusters of computers to run virtual machines reliably and efficiently. Did we mention that it's free?</p>
<p>We use a few Dell Servers at the core of the cluster and a Juniper gigabit network switch to make the magic of OpenStack work. The computing power of the cluster comes from Dell Optiplex Desktop machines that have been removed from active service in the CCIS Labs after a lab refresh</p>
<p>The plan is to allow any student, faculty, or staff member of CCIS be given their own "project" space in the CrewCloud where they can work on whatever project interests them. CrewCloud is designed to open doors to projects that might have seemed to burdensome because of the challenges of DevOps and Physical hardware. We are also shining light on a newer topic in computer science that we are very excited about getting students involved in: DevOps</p>
</div>
<div class="col-md-6">
<div class="panel-group" id="accordion" role="tablist" aria-multiselectable="true">
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingOne">
<h4 class="panel-title">
<a data-toggle="collapse" data-parent="#accordion" href="#collapseOne" aria-expanded="true" aria-controls="collapseOne">
Controller Nodes
</a>
</h4>
</div>
<div id="collapseOne" class="panel-collapse collapse in" role="tabpanel" aria-labelledby="headingOne">
<div class="panel-body">
Controller Nodes are the brains of the OpenStack Cluster. Controller Nodes orchestrate all the operations that must happen in the cloud, such as the REST APIs, Instance Creation, and the Horizon Web UI. At any given time CrewCloud has at least 3 redundant Controller nodes that form a High Availability quorum.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingTwo">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseTwo" aria-expanded="false" aria-controls="collapseTwo">
Storage Nodes
</a>
</h4>
</div>
<div id="collapseTwo" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingTwo">
<div class="panel-body">
Storage Nodes are responsible for Storing and serving the network drives that virtual machines run on, base OS images, and snapshots of virtual machines. The current Storage node in the CrewCloud has a .7TB Raid 10 Array for redundancy and performance.
</div>
</div>
</div>
<div class="panel panel-default">
<div class="panel-heading" role="tab" id="headingThree">
<h4 class="panel-title">
<a class="collapsed" data-toggle="collapse" data-parent="#accordion" href="#collapseThree" aria-expanded="false" aria-controls="collapseThree">
Compute Nodes
</a>
</h4>
</div>
<div id="collapseThree" class="panel-collapse collapse" role="tabpanel" aria-labelledby="headingThree">
<div class="panel-body">
The compute node does most of the heavy lifting in an OpenStack Cloud. Compute nodes are responsible for running the actual virtual machines. Each compute node uses its CPU power and Memory to run many virtual machines at the same time using Intel VT technology and the KVM hyper-visor. At the moment, our compute nodes are Dell Optiplex Desktop machines.
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="section translucent-bg bg-image-1 blue">
<div class="container object-non-visible animated object-visible fadeIn" data-animation-effect="fadeIn">
<h1 id="services" class="text-center title">What Next?</h1>
<p style="
text-align: center;
">We have come a long way, but there are always more projects to get involved in</p>
<div class="space"></div>
<div class="row">
<div class="col-sm-6">
<div class="media">
<div class="media-body text-right">
<h4 class="media-heading">CrewCloud Dashboard</h4>
<p>Horizon is a very powerful tool for users; however, it can be buggy and many new users are overwhelmed by the options. Let's build something simpler. </p>
</div>
<div class="media-right">
<i class="fa fa-cog"></i>
</div>
</div>
<div class="media">
<div class="media-body text-right">
<h4 class="media-heading">Monitoring</h4>
<p>OpenStack has many monitoring tools; let's dive deeper into some of these tools to develop some insightful tests to monitor the health and performance of CrewCloud</p>
</div>
<div class="media-right">
<i class="fa fa-check"></i>
</div>
</div>
<div class="media">
<div class="media-body text-right">
<h4 class="media-heading">In Browser Console</h4>
<p>In our opinion, Horizon's default method of accessing a VM console is horrible. Let's try to improve the in browser instance console's usability and design for an improved user experience</p>
</div>
<div class="media-right">
<i class="fa fa-desktop"></i>
</div>
</div>
<div class="media">
<div class="media-body text-right">
<h4 class="media-heading">Brave Firefighters</h4>
<p>OpenStack is robust but, just like every other cloud, there will be fires that need extinguishing. Got experience in hardware, software, and network troubleshooting? </p>
</div>
<div class="media-right">
<i class="fa fa-fire-extinguisher "></i>
</div>
</div>
</div>
<div class="space visible-xs"></div>
<div class="col-sm-6">
<div class="media">
<div class="media-left">
<i class="fa fa-mobile-phone"></i>
</div>
<div class="media-body">
<h4 class="media-heading">OpenStack App</h4>
<p>Want to try some mobile development? We want to build the best OpenStack app out there that can work with any OpenStack install... not just CrewCloud</p>
</div>
</div>
<div class="media">
<div class="media-left">
<i class="fa fa-area-chart"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Metrics</h4>
<p>If you like metrics then this is the project for you. Once launched we want to analyse usage of CrewCloud using the OpenStack metering tools and Graphite </p>
</div>
</div>
<div class="media">
<div class="media-left">
<i class="fa fa-users"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Help and Training</h4>
<p>OpenStack can be daunting, We need people who can craft educational tutorials for new CrewCloud users so that they can get the best experience possible</p>
</div>
</div>
<div class="media">
<div class="media-left">
<i class="fa fa-codepen"></i>
</div>
<div class="media-body">
<h4 class="media-heading">Awesome Base Images</h4>
<p>Base images set the starting point for every virtual machine. We need some awesome base images that come pre-configured with the best applications</p>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<div class="default-bg space blue">
<div class="container">
<div class="row">
<div class="col-md-8 col-md-offset-2">
<h1 class="text-center"><a href="#contact" style="text-decoration:none;">Join our Team!</a>
</h1>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================
<div class="section">
<div class="container">
<h1 class="text-center title" id="portfolio">Portfolio</h1>
<div class="separator"></div>
<p class="lead text-center">Lorem ipsum dolor sit amet laudantium molestias similique.<br> Quisquam incidunt ut laboriosam.</p>
<br>
<div class="row object-non-visible animated object-visible fadeIn" data-animation-effect="fadeIn">
<div class="col-md-12">
<!-- isotope filters start
<div class="filters text-center">
<ul class="nav nav-pills">
<li class="active"><a href="#" data-filter="*">All</a></li>
<li><a href="#" data-filter=".web-design">Web design</a></li>
<li><a href="#" data-filter=".app-development">App development</a></li>
<li><a href="#" data-filter=".site-building">Site building</a></li>
</ul>
</div>
<!-- isotope filters end -->
<!-- portfolio items start
<div class="isotope-container row grid-space-20" style="position: relative; height: 598.96875px;">
<div class="col-sm-6 col-md-3 isotope-item web-design" style="position: absolute; left: 0px; top: 0px;">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-1.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-1">
<i class="fa fa-search-plus"></i>
<span>Web Design</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-1">Project Title</a>
</div>
<!-- Modal -->
<!-- Modal end
</div>
<div class="col-sm-6 col-md-3 isotope-item app-development" style="position: absolute; left: 242px; top: 0px;">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-2.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-2">
<i class="fa fa-search-plus"></i>
<span>App Development</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-2">Project Title</a>
</div>
<!-- Modal -->
<!-- Modal end
</div>
<div class="col-sm-6 col-md-3 isotope-item web-design" style="position: absolute; left: 485px; top: 0px;">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-3.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-3">
<i class="fa fa-search-plus"></i>
<span>Web Design</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-3">Project Title</a>
</div>
<!-- Modal -->
<!-- Modal end
</div>
<div class="col-sm-6 col-md-3 isotope-item site-building" style="position: absolute; left: 727px; top: 0px;">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-4.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-4">
<i class="fa fa-search-plus"></i>
<span>Site Building</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-4">Project Title</a>
</div>
<!-- Modal -->
<!-- Modal end
</div>
<div class="col-sm-6 col-md-3 isotope-item app-development" style="position: absolute; left: 0px; top: 199px;">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-5.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-5">
<i class="fa fa-search-plus"></i>
<span>App Development</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-5">Project Title</a>
</div>
<!-- Modal -->
<!-- Modal end
</div>
<div class="col-sm-6 col-md-3 isotope-item web-design" style="position: absolute; left: 242px; top: 199px;">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-6.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-6">
<i class="fa fa-search-plus"></i>
<span>Web Design</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-6">Project Title</a>
</div>
<!-- Modal -->
<!-- Modal end
</div>
<div class="col-sm-6 col-md-3 isotope-item site-building" style="position: absolute; left: 485px; top: 199px;">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-7.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-7">
<i class="fa fa-search-plus"></i>
<span>Site Building</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-7">Project Title</a>
</div>
<!-- Modal -->
<!-- Modal end
</div>
<div class="col-sm-6 col-md-3 isotope-item web-design" style="position: absolute; left: 727px; top: 199px;">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-8.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-8">
<i class="fa fa-search-plus"></i>
<span>Web Design</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-8">Project Title</a>
</div>
<!-- Modal -->
<!-- Modal end
</div>
<div class="col-sm-6 col-md-3 isotope-item web-design" style="position: absolute; left: 0px; top: 399px;">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-9.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-9">
<i class="fa fa-search-plus"></i>
<span>Web Design</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-9">Project Title</a>
</div>
<!-- Modal -->
<!-- Modal end
</div>
<div class="col-sm-6 col-md-3 isotope-item site-building" style="position: absolute; left: 242px; top: 399px;">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-10.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-10">
<i class="fa fa-search-plus"></i>
<span>Site Building</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-10">Project Title</a>
</div>
<!-- Modal -->
<!-- Modal end
</div>
<div class="col-sm-6 col-md-3 isotope-item web-design" style="position: absolute; left: 485px; top: 399px;">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-11.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-11">
<i class="fa fa-search-plus"></i>
<span>Web Design</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-11">Project Title</a>
</div>
<!-- Modal -->
<!-- Modal end
</div>
<div class="col-sm-6 col-md-3 isotope-item app-development" style="position: absolute; left: 727px; top: 399px;">
<div class="image-box">
<div class="overlay-container">
<img src="images/portfolio-12.jpg" alt="">
<a class="overlay" data-toggle="modal" data-target="#project-12">
<i class="fa fa-search-plus"></i>
<span>App Development</span>
</a>
</div>
<a class="btn btn-default btn-block" data-toggle="modal" data-target="#project-12">Project Title</a>
</div>
<!-- Modal -->
<!-- Modal end
</div>
</div>
<!-- portfolio items end
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- section start -->
<!-- ================ -->
<!-- <div class="section translucent-bg bg-image-2 pb-clear">
<div class="container object-non-visible animated object-visible fadeIn" data-animation-effect="fadeIn">
<h1 id="clients" class="title text-center">Your Projects</h1>
<div class="space"></div>
<div class="row">
<div class="col-md-4">
<div class="media testimonial">
<div class="media-left">
<img src="images/testimonial-1.png" alt="">
</div>
<div class="media-body">
<h3 class="media-heading">You are Amazing!</h3>
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iure aperiam consequatur quo.</p>
<footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
</div>
<div class="col-md-4">
<div class="media testimonial">
<div class="media-left">
<img src="images/testimonial-2.png" alt="">
</div>
<div class="media-body">
<h3 class="media-heading">Yeah!</h3>
<blockquote>
<p>Iure aperiam consequatur quo quis exercitationem reprehenderit dolor vel ducimus.</p>
<footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
</div>
<div class="col-md-4">
<div class="media testimonial">
<div class="media-left">
<img src="images/testimonial-3.png" alt="">
</div>
<div class="media-body">
<h3 class="media-heading">Thank You!</h3>
<blockquote>
<p>Aperiam consequatur quo quis exercitationem reprehenderit suscipit iste placeat.</p>
<footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<div class="media testimonial">
<div class="media-left">
<img src="images/testimonial-2.png" alt="">
</div>
<div class="media-body">
<h3 class="media-heading">Thank You!</h3>
<blockquote>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Iure aperiam consequatur quo.</p>
<footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
</div>
<div class="col-md-4">
<div class="media testimonial">
<div class="media-left">
<img src="images/testimonial-3.png" alt="">
</div>
<div class="media-body">
<h3 class="media-heading">Amazing!</h3>
<blockquote>
<p>Iure aperiam consequatur quo quis exercitationem reprehenderit dolor vel ducimus.</p>
<footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
</div>
<div class="col-md-4">
<div class="media testimonial">
<div class="media-left">
<img src="images/testimonial-1.png" alt="">
</div>
<div class="media-body">
<h3 class="media-heading">Best!</h3>
<blockquote>
<p>Aperiam consequatur quo quis exercitationem reprehenderit suscipit iste placeat.</p>
<footer>Someone famous in <cite title="Source Title">Source Title</cite></footer>
</blockquote>
</div>
</div>
</div>
</div>
</div>
<div class="translucent-bg blue">
<div class="container">
<div class="list-horizontal">
<div class="row">
<div class="col-xs-2">
<div class="list-horizontal-item">
<img src="images/client-1.png" alt="client">
</div>
</div>
<div class="col-xs-2">
<div class="list-horizontal-item">
<img src="images/client-2.png" alt="client">
</div>
</div>
<div class="col-xs-2">
<div class="list-horizontal-item">
<img src="images/client-3.png" alt="client">
</div>
</div>
<div class="col-xs-2">
<div class="list-horizontal-item">
<img src="images/client-4.png" alt="client">
</div>
</div>
<div class="col-xs-2">
<div class="list-horizontal-item">
<img src="images/client-5.png" alt="client">
</div>
</div>
<div class="col-xs-2">
<div class="list-horizontal-item">
<img src="images/client-6.png" alt="client">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- section end -->
<!-- footer start -->
<!-- ================ -->
<footer id="footer">
<!-- .footer start -->
<!-- ================ -->
<div class="footer section">
<div class="container">
<h1 class="title text-center" id="contact">Contact Us</h1>
<div class="space"></div>
<div class="row">
<div class="col-sm-6">
<div class="footer-content">
<p class="large">Looking to join the team? Write about CrewCloud? Donations or Sponsorships? Please feel to get in touch with us!</p>
<ul class="list-icons">
<li><i class="fa fa-map-marker pr-10"></i> Suite 312, 440 Huntington Ave, Boston</li>
<li><i class="fa fa-phone pr-10"></i> +1 978.505.5610</li>
<li><i class="fa fa-envelope-o pr-10"></i> [email protected]</li>
</ul>
<ul class="social-links">
<li class="github"><a target="_blank" href="https://www.github.com/crew"><i class="fa fa-github"></i></a></li>
<li class="facebook"><a target="_blank" href="https://www.facebook.com/crewnu"><i class="fa fa-facebook"></i></a></li>
<li class="twitter"><a target="_blank" href="https://twitter.com/HtmlcoderMe"><i class="fa fa-twitter"></i></a></li>
</ul>
</div>
</div>
<div class="col-sm-6">
<div class="footer-content">
<form role="form" id="footer-form">
<div class="form-group has-feedback">
<label class="sr-only" for="name2">Name</label>
<input type="text" class="form-control" id="name2" placeholder="Name" name="name2" required="">
<i class="fa fa-user form-control-feedback"></i>
</div>
<div class="form-group has-feedback">
<label class="sr-only" for="email2">Email address</label>
<input type="email" class="form-control" id="email2" placeholder="Enter email" name="email2" required="">
<i class="fa fa-envelope form-control-feedback"></i>
</div>
<div class="form-group has-feedback">
<label class="sr-only" for="message2">Message</label>
<textarea class="form-control" rows="8" id="message2" placeholder="Message" name="message2" required=""></textarea>
<i class="fa fa-pencil form-control-feedback"></i>
</div>
<p><input type="submit" value="Send" class="btn btn-default"></p>
<p id="footer-form-success" style="display:none;" class="alert alert-success">Your message have been successfully sent! Please expect a reply in the next 48 hours</p>
<p id="footer-form-error" style="display:none;" class="alert alert-danger">An Error Occurred while attempting to sent the message</p>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- .footer end -->
<!-- .subfooter start -->
<!-- ================ -->
<div class="subfooter">
<div class="container">
<div class="row">
<div class="col-md-12">
<p class="text-center">Copyright © 2015 NU CCIS Crew.</p>
<p class="text-center">Project Lead: <a href="https://hurtigtechnologies.com">Eddie Hurtig</a></p>
</div>
</div>
</div>
</div>
<!-- .subfooter end -->
</footer>
<!-- footer end -->
<!-- JavaScript files placed at the end of the document so the pages load faster
================================================== -->
<!-- Jquery and Bootstap core js files -->
<script type="text/javascript" src="plugins/jquery.min.js"></script>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<!-- Modernizr javascript -->
<script type="text/javascript" src="plugins/modernizr.js"></script>
<!-- Isotope javascript -->
<script type="text/javascript" src="plugins/isotope/isotope.pkgd.min.js"></script>
<!-- Backstretch javascript -->
<script type="text/javascript" src="plugins/jquery.backstretch.min.js"></script>
<!-- Appear javascript -->
<script type="text/javascript" src="plugins/jquery.appear.js"></script>
<!-- Initialization of Plugins -->
<script type="text/javascript" src="js/template.js"></script>
<!-- Custom Scripts -->
<script type="text/javascript" src="js/custom.js"></script>
</body>
</html>