forked from blakemiles/git-money
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·541 lines (398 loc) · 17 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
<!doctype html>
<html lang="en" itemscope itemtype="http://schema.org/Organization">
<head>
<meta charset="UTF-8">
<meta name="description" content="Use Git Money to work from anywhere by getting paid for your pull requests.">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Open Graph Meta Data -->
<meta property="og:url" content="http://gitmoney.io/" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Git Money - Work from anywhere" />
<meta property="og:description" content="Use git money and get paid for all of your pull requests." />
<meta property="og:image" content="http://gitmoney.io/public/images/apple-touch-icon-114x114.png" />
<meta itemprop="name" content="Git Money - Work from anywhere.">
<meta itemprop="description" content="Use git money and get paid for all of your pull requests.">
<meta itemprop="image" content="http://gitmoney.io/public/images/apple-touch-icon-114x114.png">
<!-- SITE TITLE -->
<title>Git Money - Work from anywhere</title>
<!-- =========================
FAV AND TOUCH ICONS
============================== -->
<link rel="icon" href="public/images/favicon.ico">
<link rel="apple-touch-icon" href="public/images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="72x72" href="public/images/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="114x114" href="public/images/apple-touch-icon-114x114.png">
<!-- =========================
STYLESHEETS
============================== -->
<!-- BOOTSTRAP -->
<link rel="stylesheet" href="public/css/bootstrap.min.css">
<!-- FONT ICONS -->
<link rel="stylesheet" href="public/assets/elegant-icons/style.css">
<link rel="stylesheet" href="public/assets/app-icons/styles.css">
<!--[if lte IE 7]><script src="lte-ie7.js"></script><![endif]-->
<!-- WEB FONTS -->
<link href='http://fonts.googleapis.com/css?family=Roboto:100,300,100italic,400,300italic' rel='stylesheet' type='text/css'>
<!-- CAROUSEL AND LIGHTBOX -->
<link rel="stylesheet" href="public/css/owl.theme.css">
<link rel="stylesheet" href="public/css/owl.carousel.css">
<link rel="stylesheet" href="public/css/nivo-lightbox.css">
<link rel="stylesheet" href="public/css/nivo_themes/default/default.css">
<!-- ANIMATIONS -->
<link rel="stylesheet" href="public/css/animate.min.css">
<!-- CUSTOM STYLESHEETS -->
<link rel="stylesheet" href="public/css/styles.css">
<!-- COLORS -->
<link rel="stylesheet" href="public/css/colors/green.css">
<!-- RESPONSIVE FIXES -->
<link rel="stylesheet" href="public/css/responsive.css">
<!--[if lt IE 9]>
<script src="public/js/html5shiv.js"></script>
<script src="public/js/respond.min.js"></script>
<![endif]-->
<!-- JQUERY -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
</head>
<body>
<!-- =========================
HEADER
============================== -->
<header class="header" data-stellar-background-ratio="0.5" id="home">
<!-- COLOR OVER IMAGE -->
<div class="color-overlay"> <!-- To make header full screen. Use .full-screen class with color overlay. Example: <div class="color-overlay full-screen"> -->
<!-- STICKY NAVIGATION -->
<div class="navbar navbar-inverse bs-docs-nav navbar-fixed-top sticky-navigation">
<div class="container">
<div class="navbar-header">
<!-- LOGO ON STICKY NAV BAR -->
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#kane-navigation">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#"><img src="public/images/logo.png" alt="Git
Money Main Logo"></a>
</div>
<!-- NAVIGATION LINKS -->
<div class="navbar-collapse collapse" id="kane-navigation">
<ul class="nav navbar-nav navbar-right main-navigation">
<li><a href="#why">Why?</a></li>
<li><a href="#brief1">Features</a></li>
<li><a href="#brief2">Free Market</a></li>
<li><a href="#services">How it Works</a></li>
<li><a href="#screenshot-section">Getting Started</a></li>
</ul>
</div>
</div> <!-- /END CONTAINER -->
</div> <!-- /END STICKY NAVIGATION -->
<!-- CONTAINER -->
<div class="container">
<!-- ONLY LOGO ON HEADER -->
<div class="only-logo">
<div class="navbar">
<div class="navbar-header">
<img src="public/images/logo.png" alt="Git Money Main Logo">
</div>
</div>
</div> <!-- /END ONLY LOGO ON HEADER -->
<div class="row">
<div class="col-md-8 col-md-offset-2">
<!-- HEADING AND BUTTONS -->
<div class="intro-section">
<!-- WELCOME MESSAGE -->
<h1 class="intro">Work from anywhere.</h1>
<h2><iframe
src="https://ghbtns.com/github-btn.html?user=21hackers&repo=git-money&type=star&count=true&size=large"
frameborder="0" scrolling="0" width="120px"
height="30px"></iframe></h2>
<h5>Use <strong>git money</strong> and get paid for all of your pull requests.</h5>
<!-- BUTTON -->
<div class="buttons" id="download-button">
<a href="#why" class="btn btn-default btn-lg standard-button">WHY?</a>
</div>
<!-- /END BUTTONS -->
</div>
<!-- /END HEADING AND BUTTONS -->
</div>
</div>
<!-- /END ROW -->
</div>
<!-- /END CONTAINER -->
</div>
<!-- /END COLOR OVERLAY -->
</header>
<!-- /END HEADER -->
<!-- =========================
BRIEF INTRO SECTION
============================== -->
<section class="app-brief" id="why">
<div class="container">
<div class="row">
<!-- BRIEF -->
<div class="col-md-12 left-align wow fadeInLeft animated" data-wow-offset="10" data-wow-duration="1.5s">
<!-- SECTION TITLE -->
<h2 class="white-text">Why Git Money?</h2>
<div class="colored-line-left">
</div>
<p>
Because something's not right in the world. All you need to do is turn on your television, open your web browser or read a newspaper. The world is bound to the will of a small few, who make decisions that aim to decide what's best for the rest of us - and it's not working. So far these decisions have resulted in wars, bailouts, inflation, and higher taxes. No doubt, there are many other negatives as well.</p>
<p>And this is why a few of us have built Git Money. This is why we've chosen a different way. But why? Why choose a more difficult path instead of doing the other things? Why do people try to swim across the English Channel? Climb Mount Everest? Run towards danger when everyone else is running away? We choose this mantra and our currency as bitcoin, not because it is easy, <em>but because it is hard</em>.</p>
<p>We've said it before and we'll say it again - it doesn't matter where you're from or who you are. We believe in the right to work anywhere on whatever you want. It doesn't matter your gender, your education, your social or spiritual beliefs or your skin color.</p>
<p><strong>We are the Bitcoin Legion. Our home is the Earth and we work in the
Cloud - you are welcome to join us.</strong></p>
</div>
<!-- /ENDBRIEF -->
</div>
<!-- /END ROW -->
</div>
<!-- /END CONTAINER -->
</section>
<!-- /END SECTION -->
<!-- =========================
BRIEF LEFT SECTION
============================== -->
<section class="app-brief deep-dark-bg" id="brief1">
<div class="container">
<div class="row">
<!-- RIGHT SIDE WITH BRIEF -->
<div class="col-md-12 left-align wow fadeInLeft animated" data-wow-offset="10" data-wow-duration="1.5s">
<!-- SECTION TITLE -->
<h2 class="white-text">Choose what you want to work on.</h2>
<div class="colored-line-left">
</div>
<p>
<strong>People have problems</strong> that need fixing. <strong>You have the expertise</strong> to solve them. This is your opportunity.
</p>
<!-- FEATURE LIST -->
<ul class="feature-list">
<li><i class="icon_star"></i> Free market </li>
<li><i class="icon_cogs"></i> Automated payments </li>
<li><i class="icon_check"></i> Extremely low fees </li>
<li><i class="icon_heart"></i> Work from anywhere </li>
</ul>
</div>
<!-- /END RIGHT BRIEF -->
</div>
<!-- /END ROW -->
</div>
<!-- /END CONTAINER -->
</section>
<!-- /END SECTION -->
<!-- =========================
BRIEF RIGHT SECTION
============================== -->
<section class="app-brief" id="brief2">
<div class="container">
<div class="row">
<!-- BRIEF -->
<div class="col-md-12 left-align wow fadeInLeft animated" data-wow-offset="10" data-wow-duration="1.5s">
<!-- SECTION TITLE -->
<h2 class="white-text">Let your work speak for itself.</h2>
<div class="colored-line-left">
</div>
<p>
It shouldn’t matter where you are - the United States, Ukraine, an island, India or anywhere. If your code solves a problem, you should be paid. The quality of your work should be all that matters when providing a solution to a problem. With <strong>git money</strong>, your work is your resume. Nothing else matters.
</p>
</div>
<!-- /ENDBRIEF -->
</div>
<!-- /END ROW -->
</div>
<!-- /END CONTAINER -->
</section>
<!-- /END SECTION -->
<!-- =========================
BRIEF LEFT SECTION WITH VIDEO
============================== -->
<section class="app-brief deep-dark-bg" id="brief1">
<div class="container">
<div class="row">
<!-- RIGHT SIDE WITH BRIEF -->
<div class="col-md-12 left-align wow fadeInLeft animated" data-wow-offset="10" data-wow-duration="1.5s">
<!-- SECTION TITLE -->
<h2 class="white-text">Not a coder? Not a problem.</h2>
<div class="colored-line-left">
</div>
<p>
A problem doesn’t have to be technical. People have needs for graphics, text, video editing, social media assistance and many other things - and they're willing to pay for it. If you have a skill, <strong>there might be money waiting for you</strong>.
</p>
</div>
<!-- /END RIGHT BRIEF -->
</div>
<!-- /END ROW -->
</div>
<!-- /END CONTAINER -->
</section>
<!-- /END SECTION -->
<!-- =========================
SERVICES
============================== -->
<section class="services" id="services">
<div class="container">
<!-- SECTION HEADER -->
<div class="section-header wow fadeIn animated" data-wow-offset="10" data-wow-duration="1.5s">
<!-- SECTION TITLE -->
<h2 class="white-text">How it works</h2>
<div class="colored-line">
</div>
<div class="section-description">
Find a bitcoin-payable project and enjoy borderless commerce.
</div>
<div class="colored-line">
</div>
</div>
<!-- /END SECTION HEADER -->
<div class="row">
<!-- SINGLE SERVICE -->
<div class="col-md-4 single-service wow fadeIn animated" data-wow-offset="10" data-wow-duration="1.5s">
<!-- SERVICE ICON -->
<div class="service-icon">
<i class=" icon_search"></i>
</div>
<!-- SERVICE HEADING -->
<h3>git opportunities</h3>
<!-- SERVICE DESCRIPTION -->
<p>
<a href="https://github.com/21hackers/git-money/issues?q=is%3Aissue+is%3Aopen+label%3A%22git+money%22" target="_blank">Browse current bitcoin-payable Issues on GitHub</a>. All Issues with a
payout will contain the green label git money along with a "<strong>Current
Payout:</strong>" when viewed. The current payout for resolving in the issue is
denoted in BTC (Bitcoin) and US Dollars. If you have a question about
the Issue, feel free to comment on it and ask! <a href="https://guides.github.com/activities/hello-world/" target="_blank">New to git?</a>
</p>
</div>
<!-- /END SINGLE SERVICE -->
<!-- SINGLE SERVICE -->
<div class="col-md-4 single-service wow fadeIn animated" data-wow-offset="10" data-wow-duration="1.5s">
<!-- SERVICE ICON -->
<div class="service-icon">
<i class="icon_tools"></i>
</div>
<!-- SERVICE HEADING -->
<h3>git work</h3>
<!-- SERVICE DESCRIPTION -->
<p>
Once you've found an opportunity, you're halfway home (or wherever it is
you're going!). Go ahead and get to work! All you need to do is clone
the repo, create a branch, commit your changes and submit a pull
request. In your pull request message, <a href="https://github.com/blog/1506-closing-issues-via-pull-requests" target="_blank">make sure to note that it resolves the issue</a> and
also include your bitcoin address.
</p>
</div>
<!-- /END SINGLE SERVICE -->
<!-- SINGLE SERVICE -->
<div class="col-md-4 single-service wow fadeIn animated" data-wow-offset="10" data-wow-duration="1.5s">
<!-- SERVICE ICON -->
<div class="service-icon">
<i class="icon_wallet"></i>
</div>
<!-- SERVICE HEADING -->
<h3>git money</h3>
<!-- SERVICE DESCRIPTION -->
<p>
Once your pull request is merged, you instantly get paid. However you
choose to git money is up to you. Some people look for small issues that
add up to larger sums. Others go straight for the big jobs. Maybe you're
middle of the road, picking and choosing to make extra money on the
side. It's completely up to you how you want to git money.
</p>
</div>
<!-- /END SINGLE SERVICE -->
</div>
<!-- /END ROW -->
</div>
<!-- /END CONTAINER -->
</section>
<!-- /END FEATURES SECTION -->
<!-- =========================
BOUNTIES
============================== -->
<section class="screenshots deep-dark-bg" id="screenshot-section">
<div class="container">
<!-- SECTION HEADER -->
<div class="section-header wow fadeIn animated" data-wow-offset="10" data-wow-duration="1.5s">
<!-- SECTION TITLE -->
<h2 class="white-text">The next stop is yours.</h2>
<div class="colored-line">
</div>
<div class="section-description">
<a href="https://github.com/21hackers/git-money/issues?q=is%3Aissue+is%3Aopen+label%3A%22git+money%22" target="_blank"><h3>Browse some issues where you can git money. </h3></a>
</div>
<div class="colored-line">
</div>
</div>
<!-- /END SECTION HEADER -->
<!--
<div class="row wow bounceIn animated" data-wow-offset="10" data-wow-duration="1.5s">
<div id="screenshots" class="owl-carousel owl-theme">
<div class="shot">
<a href="https://github.com/bitcoin/bitcoin/issues" target="_blank"><img src="public/images/screenshots/1.jpg" alt="Bitcoin Core"></a>
</div>
<div class="shot">
<a href="https://github.com/bitcoinjs/bitcoinjs-lib/issues" target="_blank"><img src="public/images/screenshots/3.jpg" alt="Bitcoin JS"></a>
</div>
<div class="shot">
<a href="https://github.com/bitcoin-dot-org/bitcoin.org/issues" target="_blank"><img src="public/images/screenshots/2.jpg" alt="Bitcoin.org"></a>
</div>
<div class="shot">
<a href="https://github.com/schildbach/bitcoin-wallet/issues" target="_blank"><img src="public/images/screenshots/4.jpg" alt="Screenshot"></a>
</div>
</div>
-->
<!-- /END SCREENSHOTS -->
</div>
<!-- /END ROW -->
</div>
<!-- /END CONTAINER -->
</section>
<!-- /END SCREENSHOTS SECTION -->
<!-- =========================
FOOTER
============================== -->
<footer>
<div class="container">
<div class="contact-box wow fadeIn animated" data-wow-offset="10" data-wow-duration="1.5s">
<!-- LOGO -->
<img src="public/images/logo.png" alt="Git Money Footer Logo" class="responsive-img">
<!-- SOCIAL ICONS -->
<ul class="social-icons">
<li><a href="https://www.facebook.com/sharer/sharer.php?u=http://gitmoney.io/"><i class="social_facebook_square"></i></a></li>
<li><a href="https://twitter.com/intent/tweet?via=gitmoneyco&text=Use+git+money+and+get+paid+for+all+of+your+pull+requests.&url=http://gitmoney.io&hashtag=gitmoney" class="twitter-share-button"><i class="social_twitter_square"></i></a></li>
<li><a href="https://plus.google.com/share?url=http://gitmoney.io"><i class="social_googleplus_square"></i></a></li>
</ul>
<!-- COPYRIGHT TEXT -->
<p class="copyright">
© 2016 gitmoney.io<br/><a href="https://21.co/buy/" target="_blank">Powered by a 21 Bitcoin Computer</a>.
</p>
</div>
<!-- /END CONTAINER -->
</footer>
<!-- /END FOOTER -->
<!-- =========================
SCRIPTS
============================== -->
<script src="public/js/bootstrap.min.js"></script>
<script src="public/js/smoothscroll.js"></script>
<script src="public/js/jquery.scrollTo.min.js"></script>
<script src="public/js/jquery.localScroll.min.js"></script>
<script src="public/js/owl.carousel.min.js"></script>
<script src="public/js/nivo-lightbox.min.js"></script>
<script src="public/js/simple-expand.min.js"></script>
<script src="public/js/wow.min.js"></script>
<script src="public/js/jquery.stellar.min.js"></script>
<script src="public/js/retina.min.js"></script>
<script src="public/js/jquery.nav.js"></script>
<script src="public/js/matchMedia.js"></script>
<script src="public/js/jquery.ajaxchimp.min.js"></script>
<script src="public/js/jquery.fitvids.js"></script>
<script src="public/js/custom.js"></script>
<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','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-74365883-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>