-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtimeline.html
More file actions
336 lines (316 loc) · 14.1 KB
/
timeline.html
File metadata and controls
336 lines (316 loc) · 14.1 KB
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
<!DOCTYPE html>
<html lang="en" class="no-js">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description"
content="We're helping you trust your open source and use it confidently. Check out our journey.">
<meta name="keywords"
content="open source, timeline, startup journey, milestones, accomplishments, announcements, community">
<title>GitLinks - on our path to success</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href="css/responsive.css" rel="stylesheet">
<link href="css/mdl-button.css" rel="stylesheet">
<link href="css/reset.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<!-- import material design icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/footer.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
<link rel="shortcut icon" href="images/ico/favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="images/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="images/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="images/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="images/ico/apple-touch-icon-57-precomposed.png">
<!-- import jQuery-->
<script src="js/jquery-2.1.0.min.js" type="text/javascript"></script>
<!-- import material design lite -->
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<script defer src="https://code.getmdl.io/1.1.3/material.min.js"></script>
<style>
.videoContainer {
position: relative;
width: 100%;
border-radius: 5px;
background-attachment: scroll;
overflow: hidden;
height: 100vh;
}
.videoContainer video {
min-width: 100%;
min-height: 100%;
position: relative;
z-index: 1;
}
.videoContainer .overlay {
height: 100%;
width: 100%;
position: absolute;
top: 0;
left: 0;
z-index: 2;
background: #212132;
opacity: 0.85;
}
.hero {
font-family: 'Roboto', sans-serif;
font-weight: 900;
color: white;
margin: 0;
position: absolute;
top: 50%;
left: 50%;
font-size: 4rem;
transform: translate(-50%, -50%);
}
img.myBg {
width: 100%;
height: 100%;
position: absolute;
z-index: -1;
}
.down {
font-size: 50px;
left: inherit;
margin: 0;
}
@font-face {
font-family:"segoeuiemoji";
src: url("./fonts/seguiemj.ttf") /* TTF file for CSS3 browsers */
}
</style>
</head>
<body>
<div class="videoContainer">
<img class='myBg' src="images/home/video_background.png" alt=""/>
<div class="overlay">
<span class="hero" style="color: white">
Unlock the <span style="color: #c2264a">full potential</span> of open source software.
<div>
<a href="#cd-timeline">
<button style="padding: 0;"
class="android-fab mdl-button mdl-js-button mdl-button--fab mdl-js-ripple-effect">
<i class="material-icons down" style="color: white;">expand_more</i>
</button>
</a>
</div>
</span>
</div>
<video autoplay loop muted poster="data:image/gif,AAAA" style="background:transparent no-repeat;">
<source src="https://embed-ssl.wistia.com/deliveries/21163b1c1720a1fc6199a37032b836c6a177b8f0/file.mp4"
type="video/mp4">
<source src="https://embed-ssl.wistia.com/deliveries/21163b1c1720a1fc6199a37032b836c6a177b8f0/file.mp4"
type="video/webm">
</video>
</div>
<section id="cd-timeline" class="cd-container">
<!-- card 8 -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-picture">
<i class="material-icons md-light">mic</i>
</div>
<div class="cd-timeline-content">
<h2>GitLinks Wins First Place at TechStars-Sponsored Pitch Competition</h2>
<p>Our COO, Nwamaka, pitched and <a target="_blank" href="https://twitter.com/ianfolau/status/748642290239934465">won at the Startup Showcase</a> of NY Tech Inclusion Conference, presented by Google for Entrepreneurs. Always fun sharing our narrative with the world. The cash prize and a bundle of awards were an added delight, helping us continue to build our product.</span></p>
<a href="https://twitter.com/ianfolau/status/748642290239934465"><img src="images/timeline/TechInclusion2016.jpg"></a>
<span class="cd-date">June 2016</span>
</div>
</div>
<!-- card 7 -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-picture">
<i class="material-icons md-light">star</i>
</div>
<div class="cd-timeline-content">
<h2>GitLinks wins the Cornell Johnson Business School Hemmeter Award</h2>
<p>The
<a target="_blank"
href="http://www.johnson.cornell.edu/About/Newsroom/Article-Detail/ArticleId/44074/Graduating-MBA-Students-Honored-at-Dean-s-Awards-Brunch-1?utm_source=linkedin&utm_medium=organic&utm_term=%20universitypage&utm_content=general&utm_campaign=general">
Hemmeter Award
</a>
is given to the business plan most likely to launch a successful business, as determined by our Entrepreneurship Faculty.
GitLinks was also awarded a cash a prize.</p>
<a href="http://www.johnson.cornell.edu/About/Newsroom/Article-Detail/ArticleId/44074/Graduating-MBA-Students-Honored-at-Dean-s-Awards-Brunch-1?utm_source=linkedin&utm_medium=organic&utm_term=%20universitypage&utm_content=general&utm_campaign=general"><img
src="images/timeline/hemmeter.jpg"></a>
<span class="cd-date">May 2016</span>
</div>
</div>
<!-- card 6 -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-picture">
<i class="material-icons md-light">attach_money</i>
</div>
<div class="cd-timeline-content">
<h2>GitLinks gets pre-seed funding</h2>
<p>We received a pre-seed investment valued at $100,000 from Cornell Tech by winning the
<a target="_blank" href="http://tech.cornell.edu/news/2016-cornell-tech-startup-award-winners-announced">
Startup Awards</a>
competition.
</p>
<a href="http://tech.cornell.edu/news/2016-cornell-tech-startup-award-winners-announced"><img
src="images/timeline/Cornell_NYC_Tech_logo.png"></a>
<span class="cd-date">May 10, 2016</span>
</div>
</div>
<!-- card 5 -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-movie">
<i class="material-icons md-light">location_city</i>
</div>
<div class="cd-timeline-content">
<h2>GitLinks joins forces with eBay</h2>
<p>eBay believes in our product and invites us to work inside of their NYC office for the next 6 months.
We now have the support of eBay's Engineers & Data Scientists.
</p>
<img src="images/timeline/ebay-logo.png">
<span class="cd-date">April 2016</span>
</div>
</div>
<!-- card 4 -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-picture">
<i class="material-icons md-light">camera_enhance</i>
</div>
<div class="cd-timeline-content">
<h2>We took team pics! Super Manhattany looking</h2>
<p></p>
<img src="images/timeline/GitLinks_Collage.jpg">
<span class="cd-date">February 2016</span>
</div>
</div>
<!-- card 3 -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-picture">
<i class="material-icons md-light">photo</i>
</div>
<div class="cd-timeline-content">
<h2>Picking our logo, from 12 options to just 1</h2>
<p></p>
<img src="images/timeline/PickingLogo.jpg">
<span class="cd-date">February 2016</span>
</div>
</div>
<!-- card 2 -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-picture">
<i class="material-icons md-light">date_range</i>
</div>
<div class="cd-timeline-content">
<h2>Our first official team meeting of 2016</h2>
<p>Two Masters of Computer Science and two MBAs with complementary skill sets. Excited to tackle the problem of
assessing and monitoring open source software.</p>
<img src="images/timeline/first_2016_meeting.jpg">
<span class="cd-date">January 2016</span>
</div>
</div>
<!-- card 1 -->
<div class="cd-timeline-block">
<div class="cd-timeline-img cd-picture">
<i class="material-icons md-light">fast_rewind</i>
</div>
<div class="cd-timeline-content">
<h2>
Before there was GitLinks, there was GitRank</h2>
<p>As part of a class in his masters degree program at <a target="_blank" href="http://tech.cornell.edu">Cornell Tech</a>
CTO, Nicolas Joseph, was given the opportunity to build a product that satisfied a real world need. He
decided to build a community of user sourced reviews of Open Source software.</p>
<img src="images/timeline/GitRank.png">
<span class="cd-date">November 2015</span>
</div>
</div>
</section>
<hr>
<footer id="footer" style="margin-top: 30px;">
<div class="container">
<div class="row">
<section id="fh5co-newsletter">
<div class="container">
<div class="row">
<div class="col-md-4 col-md-offset-4 col-sm-6 col-sm-offset-3 text-center">
<h2 class="fh5co-uppercase-heading-sm fh5co-no-margin-bottom">What an exciting
time!</h2>
<div class="fh5co-spacer fh5co-spacer-xxs"></div>
<form action="http://gitlinks.us12.list-manage.com/subscribe/post" method="POST">
<input type="hidden" name="u" value="e263f6ae084bc2d5ec0fbd7aa">
<input type="hidden" name="id" value="c1f68c6084">
<div class="form-group">
<label for="email" class="sr-only">Email address</label>
<input type="email" class="form-control input-lg" name="MERGE0" id="email"
placeholder="Email">
</div>
<input type="submit" class="mdl-button mdl-button--raised mdl-button--accent"
style=" display: block; width: 100%;" value="STAY TUNED ON OUR JOURNEY">
</form>
</div>
</div>
</div>
</section>
<div class="col-sm-12">
<div class="copyright-text text-center">
<p>Email us <a href="mailto:team@gitlinks.com">team@gitlinks.com</a></p>
</div>
</div>
</div>
</div>
</footer>
<!--/#footer-->
<!-- real footer starts -->
<div id="maia-signature" style="visibility: visible;"></div>
<div class="maia-footer" id="maia-footer" style="visibility: visible;">
<div id="maia-footer-global">
<div class="maia-aux">
<ul>
<li>
<a href="index.html">GitLinks</a>
</li>
</ul>
</div>
</div>
</div>
<script type="text/javascript" src="js/jquery.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/wow.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/main2.js"></script>
<script type="text/javascript" src="js/masonry.min.js"></script>
<script type="text/javascript" src="js/modernizr.js"></script>
<!-- smooth scrolling between sections -->
<script>
$(function () {
$('a[href*="#"]:not([href="#"])').click(function () {
if (location.pathname.replace(/^\//, '') == this.pathname.replace(/^\//, '') && location.hostname == this.hostname) {
var target = $(this.hash);
target = target.length ? target : $('[name=' + this.hash.slice(1) + ']');
if (target.length) {
$('html, body').animate({
scrollTop: target.offset().top
}, 700);
return false;
}
}
});
});
</script>
<!-- Google Analytics -->
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', 'https://www.google-analytics.com/analytics.js', 'ga');
ga('create', 'UA-76724546-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>