forked from heyadjoining/turtlecoin.lol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
529 lines (489 loc) · 19.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
---
title: index_page.meta.title
description: index_page.meta.description
---
<!DOCTYPE html>
<html lang="{{ site.lang }}">
<head>
{% include meta.html %}
{% include stylesheets.html %}
{% include head_javascripts.html %}
<!-- Royal Preloader CSS -->
<link href="/css/royal_preloader.css" rel="stylesheet">
<!-- Mapbox -->
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.44.0/mapbox-gl.js'></script>
<link href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.44.0/mapbox-gl.css' rel='stylesheet' />
<!-- Royal Preloader -->
<script type="text/javascript" src="/js/royal_preloader.min.js"></script>
<script type="text/javascript">
Royal_Preloader.config({
mode: 'progress',
showProgress: true,
background: '#1d1d1d'
});
</script>
</head>
<body class="royal_preloader" data-spy="scroll" data-target=".navbar" data-offset="70" data-page="index">
<div id="royal_preloader"></div>
<!-- Begin Header -->
<header>
<!-- Begin Navigation -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="row">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">{% t navbar.toggle_navigation %}</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand scroll-link" href="#home" data-id="home">
<h2><sup><strong> TurtleCoin</strong></sup></h2> </a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav navbar-right navbar-main">
<li><a href="#home" data-id="home" class="scroll-link" title="{% t navbar.home %}">{% t navbar.home %}</a></li>
<li><a href="#download" data-id="download" class="scroll-link" title="{% t navbar.download %}">{% t navbar.download %}</a></li>
<li><a href="#why" data-id="why" class="scroll-link" title="{% t navbar.features %}">{% t navbar.features %}</a></li>
<li><a href="#story" data-id="story" class="scroll-link" title="{% t navbar.story %}">{% t navbar.story %}</a></li>
<li><a href="#specs" data-id="specs" class="scroll-link" title="{% t navbar.specs %}">{% t navbar.specs %}</a></li>
<li><a href="#roadmap" data-id="roadmap" class="scroll-link" title="{% t navbar.roadmap %}">{% t navbar.roadmap %}</a></li>
<li><a href="#contact" data-id="contact" class="scroll-link" title="{% t navbar.support %}">{% t navbar.support %}</a></li>
<li>{% include resources_navbar_item.html %}</li>
<li>{% include language_selector_navbar_item.html %}</li>
</ul>
</div><!-- /.navbar-collapse -->
</div>
</div><!-- /.container-fluid -->
</nav>
<!-- End Navigation -->
</header>
<!-- End Header -->
<!-- Begin Jumbotron -->
<div class="jumbotron jumbotron-main" id="home">
<div id="map-wrapper">
<div id="map" style="position:absolute; top: 0; bottom: 0; width: 100%; height: 100%;"></div>
</div>
<div class="container center-vertically-holder">
<div class="center-vertically">
<div id="scaleReveal" class="col-sm-8 col-sm-offset-2 col-lg-6 col-lg-offset-3 text-center">
<object>
<embed src="/images/logos/turtle_shield_animate.svg" height="20%" width="20%">
</object>
<div class="ticker">
<h1>{% t index_page.banner_is_fast %}</h1>
<h1>{% t index_page.banner_is_easy %}</h1>
<h1>{% t index_page.banner_is_safe %}</h1>
</div>
<hr>
<p> {% t index_page.banner_one_liner %}</p>
<a href="#download" data-id="download" class="scroll-link btn btn-default btn-white btn-lg mt15">{% t index_page.banner_download %} <span class="ion-android-arrow-down"></span></a>
</div><!-- /.column -->
</div><!-- /.vertical center -->
</div><!-- /.container -->
</div>
<!-- End Jumbotron -->
<!-- Begin Intro -->
<section id="download">
<!-- Begin Hello Intro -->
<div id="hello-intro" class="pt60 pb60">
<div class="container">
<div class="row">
<div class="col-md-12">
<h3 class="no-margin rightReveal">{% t index_page.banner_builds %}</h3>
</div>
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.div -->
<!-- End Hello Intro -->
<!-- Begin Our Process Title -->
<div id="our-process-title" class="pt30 pb30">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h4 class="no-margin">{% t index_page.download_select_system %}</h4>
</div>
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.div -->
<!-- End Our Process Title -->
<!-- Begin Our Process -->
<div id="our-process">
<div class="container-fluid">
<div class="row">
<div class="col-sm-4 col-md-4 col-lg-4 process-box text-center pt50 pb50">
<div class="leftReveal">
<div class="process-intro">
<h3 class="process-number">Apple</h3>
<div><i class="process-icons fab fa-apple"></i></div>
<h2>{% t index_page.download_latest %}</h2>
</div>
<div class="process-content">
<div><span class="process-icons pe-7s-users"></span></div>
<h2 class="mt15 mb20">TurtleCoin Mac</h2>
<p class="no-margin">
<a href="https://github.com/turtlecoin/turtle-wallet-go/releases/latest"> {% t index_page.download_gui %}</a>
<br>
<a href="https://github.com/turtlecoin/turtlecoin/releases/latest"> {% t index_page.download_cli %}</a>
</p>
</div>
</div><!-- /.animation -->
</div><!-- /.column -->
<div class="col-sm-4 col-md-4 col-lg-4 process-box text-center pt50 pb50">
<div class="bottomReveal">
<div class="process-intro">
<h3 class="process-number">Windows</h3>
<div><i class="process-icons fab fa-windows"></i></div>
<h2>{% t index_page.download_latest %}</h2>
</div>
<div class="process-content">
<div><span class="process-icons pe-7s-users"></span></div>
<h2 class="mt15 mb20">TurtleCoin Windows</h2>
<p class="no-margin">
<a href="https://github.com/turtlecoin/turtle-wallet-go/releases/latest"> {% t index_page.download_gui %}</a>
<br>
<a href="https://github.com/turtlecoin/turtlecoin/releases/latest"> {% t index_page.download_cli %}</a>
</p>
</div>
</div><!-- /.animation -->
</div><!-- /.column -->
<div class="col-sm-4 col-md-4 col-lg-4 process-box text-center pt50 pb50 no-border-right">
<div class="rightReveal">
<div class="process-intro">
<h3 class="process-number">Linux</h3>
<div><i class="process-icons fab fa-linux"></i></div>
<h2>{% t index_page.download_latest %}</h2>
</div>
<div class="process-content">
<div><span class="process-icons pe-7s-users"></span></div>
<h2 class="mt15 mb20">TurtleCoin Linux</h2>
<p class="no-margin">
<a href="https://github.com/turtlecoin/turtle-wallet-go/releases/latest"> {% t index_page.download_gui %}</a>
<br>
<a href="https://github.com/turtlecoin/turtlecoin/releases/latest"> {% t index_page.download_cli %}</a>
</p>
</div>
</div><!-- /.animation -->
</div><!-- /.column -->
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.div -->
<!-- End Our Process -->
<!-- Begin Quote Carousel -->
<div id="carousel" class="testimonial-carousel pt40 pb20">
<div class="container">
<div class="row">
<div class="col-md-10 col-md-offset-1 text-center">
<span class="pe-7s-close heading-3-icon"></span>
<h2 class="heading-3">{% t index_page.fun_facts_title %}</h2>
<div class="fade-quote-carousel carousel slide" id="quote-carousel" data-ride="carousel" data-interval="3000">
<!-- Carousel indicators -->
<ol class="carousel-indicators">
<li data-target="#quote-carousel" data-slide-to="0" class="active"></li>
<li data-target="#quote-carousel" data-slide-to="1"></li>
<li data-target="#quote-carousel" data-slide-to="2"></li>
</ol>
<!-- Carousel items -->
<div class="carousel-inner">
<div class="active item" style="height=150px;">
<blockquote>
<p>{% t index_page.fun_facts_1 %}</p>
</blockquote>
</div>
<div class="item" style="height=150px;">
<blockquote>
<p>{% t index_page.fun_facts_2 %}</p>
</blockquote>
</div>
<div class="item" style="height=150px;">
<blockquote>
<p>{% t index_page.fun_facts_3 %}</p>
</blockquote>
</div>
</div>
</div><!-- /.carousel -->
</div><!-- /.column -->
</div><!-- /.row -->
</div><!-- /.container -->
</div><!-- /.carousel -->
<!-- End Quote Carousel -->
</section><!-- /.section -->
<!-- End Intro -->
<!-- Begin why -->
<section id="why" class="background2 section-padding">
<div class="container">
<div class="row">
<div class="col-xs-12 section-title text-center">
<h2>{% t index_page.why_title %}</h2>
<span class="section-divider"></span>
</div><!-- /.column -->
</div><!-- /.row -->
<div class="row equal-height">
<!-- Item 1 -->
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4">
<div class="services-box leftReveal">
<span class="pe-7s-gleam services-icon"></span>
<h3 class="service-name">1. {% t index_page.why_1_title %}</h3>
<p class="text-small">{% t index_page.why_1 %}</p>
</div>
</div><!-- /.column -->
<!-- Item 2 -->
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 mt30-xs">
<div class="services-box topReveal">
<span class="pe-7s-look services-icon"></span>
<h3 class="service-name">2. {% t index_page.why_2_title %}</h3>
<p class="text-small">{% t index_page.why_2 %}</p>
</div>
</div><!-- /.column -->
<!-- Item 3 -->
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 mt30-sm mt30-xs">
<div class="services-box rightReveal">
<span class="pe-7s-bicycle services-icon"></span>
<h3 class="service-name">3. {% t index_page.why_3_title %}</h3>
<p class="text-small">{% t index_page.why_3 %}</p>
</div>
</div><!-- /.column -->
<!-- Item 4 -->
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 mt30">
<div class="services-box leftReveal">
<span class="pe-7s-plugin services-icon"></span>
<h3 class="service-name">4. {% t index_page.why_4_title %}</h3>
<p class="text-small">{% t index_page.why_4 %}</p>
</div>
</div><!-- /.column -->
<!-- Item 5 -->
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 mt30">
<div class="services-box bottomReveal">
<span class="pe-7s-users services-icon"></span>
<h3 class="service-name">5. {% t index_page.why_5_title %}</h3>
<p class="text-small">{% t index_page.why_5 %}</p>
</div>
</div><!-- /.column -->
<!-- Item 6 -->
<div class="col-xs-12 col-sm-6 col-md-4 col-lg-4 mt30">
<div class="services-box rightReveal">
<span class="pe-7s-headphones services-icon"></span>
<h3 class="service-name">6. {% t index_page.why_6_title %}</h3>
<p class="text-small">{% t index_page.why_6 %}</p>
</div>
</div><!-- /.column -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.section -->
<!-- End Services -->
<!-- Begin About -->
<section id="story" class="background1 section-padding">
<div class="container">
<div class="row">
<div class="col-xs-12 section-title text-center">
<h2>{% t index_page.story_title %}</h2>
<span class="section-divider"></span>
</div><!-- /.column -->
</div><!-- /.row -->
<div class="row mb15">
<div class="col-sm-5 leftReveal">
<h5 class="heading-1 mb20">{% t index_page.story_1 %}</h5>
<h3 class="mb15 no-margin-top">{% t index_page.story_2 %}</h3>
<p class="no-margin text-small">{% t index_page.story_3 %}</p><br>
<p>{% t index_page.story_4 %}</p>
</div><!-- /.column -->
<div class="col-sm-7 mt30-xs rightReveal">
<h5 class="heading-1 mb20">{% t index_page.story_5 %}</h5>
<span class="ion-beer logo-about"></span>
<p>{% t index_page.story_6 %}</p>
<p>{% t index_page.story_7 %}</p>
<p>{% t index_page.story_8 %}</p>
<p>{% t index_page.story_9 %}</p>
</div><!-- /.column -->
</div><!-- /.row -->
<div class="row mb30">
<div class="col-sm-9 leftReveal">
<h5 class="heading-1 mb20">{% t index_page.story_10 %}</h5>
<p class="lead no-margin">{% t index_page.story_11 %}</p>
<p class="lead no-margin">{% t index_page.story_12 %}</p>
</div><!-- /.column -->
<div class="col-sm-3 mt30-xs rightReveal">
<h5 class="heading-1 mb20">{% t index_page.story_14 %}</h5>
<p class="no-margin"><i>{% t index_page.story_13 %}</i></p>
</div><!-- /.column -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.section -->
<!-- End About -->
<!-- Begin Our Count -->
<section id="ourcount" class="section-padding parallax-window" data-parallax="scroll" data-image-src="/images/slider1.jpg">
<div class="container" id="specs">
<div class="row mb30">
<div class="section-title col-sm-8 col-sm-offset-2 col-lg-6 col-lg-offset-3 text-center">
<h2>{% t index_page.fine_print_title %}</h2>
<span class="section-divider mb15"></span>
<p class="no-margin">{% t index_page.fine_print_1 %}</p>
<p class="text-small"></p>
</div><!-- /.column -->
</div><!-- /.row -->
<div class="row">
<div class="col-sm-6 col-md-3 item leftReveal">
<div class="circle-hold">
<i class="ion-cube"></i>
</div>
<h2 class="timer mb5" data-from="1" data-to="29000" data-refresh-interval="20">1</h2><h5>TRTL</h5>
<p class="no-margin">{% t index_page.fine_print_2 %}</p>
</div><!-- /.column -->
<div class="col-sm-6 col-md-3 item mt30-xs rightReveal">
<div class="circle-hold">
<i class="ion-clock"></i>
</div>
<h2 class="timer mb5" data-from="1" data-to="30" data-refresh-interval="20">1</h2>
<p class="no-margin">{% t index_page.fine_print_3 %}</p>
</div><!-- /.column -->
<div class="col-sm-6 col-md-3 item mt30-xs mt30-sm leftReveal">
<div class="circle-hold">
<i class="ion-social-github"></i>
</div>
<h2 class="timer mb5" data-from="1" data-to="35" data-refresh-interval="20">1</h2>
<p class="no-margin">{% t index_page.fine_print_4 %}</p>
</div><!-- /.column -->
<div class="col-sm-6 col-md-3 item mt30-xs mt30-sm rightReveal">
<div class="circle-hold">
<i class="ion-happy-outline"></i>
</div>
<h2 class="timer mb5">0</h2>
<p class="no-margin">{% t index_page.fine_print_5 %}</p>
</div><!-- /.column -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.section -->
<!-- End Our Count -->
<!-- Begin Timeline -->
<section id="roadmap" class="background1 section-padding-top">
<div class="container">
<div class="row">
<div class="col-xs-12 section-title text-center">
<h2>{% t index_page.roadmap_title %}</h2>
<span class="section-divider"></span>
</div><!-- /.column -->
</div><!-- /.row -->
<div class="row">
<div class="col-lg-12">
<ul class="timeline pb80">
<!-- Item 1 -->
<li>
<div class="timeline-image scaleReveal"><img alt="Timeline" class="img-circle img-responsive" src="/images/timeline-1.png"></div>
<div class="timeline-panel leftReveal">
<div class="timeline-heading">
<h5 class="heading-1 mb15">Q4 2017</h5>
<h4 class="subheading">{% t index_page.roadmap_1 %}</h4>
</div>
<div class="timeline-body">
<p>{% t index_page.roadmap_2 %}</p>
<p>{% t index_page.roadmap_3 %}</p>
</div>
</div>
</li>
<!-- Item 2 -->
<li class="timeline-inverted">
<div class="timeline-image scaleReveal"><img alt="Timeline" class="img-circle img-responsive" src="/images/timeline-2.png"></div>
<div class="timeline-panel rightReveal">
<div class="timeline-heading">
<h5 class="heading-1 mb15">Q1 2018</h5>
<h4 class="subheading">{% t index_page.roadmap_4 %}</h4>
</div>
<div class="timeline-body">
<p>{% t index_page.roadmap_5 %}</p>
<ul class="list-unstyled list-highlighted mt10">
<li>
<a href="https://github.com/turtlecoin/turtle-wallet-go">
Golang GUI [Win/Mac/Lin]
</a>
</li>
<li>
<a href="https://github.com/turtlecoin/turtle-wallet-winforms">
Winforms GUI [Win/Mac/Lin]
</a>
</li>
<li>
<a href="https://github.com/turtlecoin/turtle-wallet-python">
Python GUI [Win/Mac/Lin]
</a>
</li>
<li>
<a href="https://github.com/turtlecoin/turtle-wallet-electron">
Electron GUI [Win/Mac/Lin]
</a>
</li>
<li>
<a href="https://github.com/turtlecoin/turtle-wallet-csharp">
C# GUI [Windows]
</a>
</li>
</ul>
</div>
</div>
</li>
<!-- Item 3 -->
<li>
<div class="timeline-image scaleReveal"><img alt="Timeline" class="img-circle img-responsive" src="/images/timeline-3.png"></div>
<div class="timeline-panel leftReveal">
<div class="timeline-heading">
<h5 class="heading-1 mb15">Q2 2018</h5>
<h4 class="subheading">{% t index_page.roadmap_6 %}</h4>
</div>
<div class="timeline-body"> <p>{% t index_page.roadmap_7 %}</p>
</div>
</div>
</li>
<!-- Item 4 -->
<li class="timeline-inverted">
<div class="timeline-image scaleReveal"><img alt="Timeline" class="img-circle img-responsive" src="/images/timeline-5.png"></div>
<div class="timeline-panel rightReveal">
<div class="timeline-heading">
<h5 class="heading-1 mb15">{% t index_page.roadmap_8 %}</h5>
<h4 class="subheading">{% t index_page.roadmap_12 %}</h4>
</div>
<div class="timeline-body">
<p>{% t index_page.roadmap_13 %}</p>
</div>
</div>
</li>
<!-- Item 3 -->
<li>
<div class="timeline-image scaleReveal"><img alt="Timeline" class="img-circle img-responsive" src="/images/timeline-4.png"></div>
<div class="timeline-panel leftReveal">
<div class="timeline-heading">
<h5 class="heading-1 mb15">{% t index_page.roadmap_11 %}</h5>
<h4 class="subheading">{% t index_page.roadmap_9 %}</h4>
</div>
<div class="timeline-body">
<p>{% t index_page.roadmap_10 %}</p>
</div>
</div>
</li>
<!-- Item 4 -->
<li class="timeline-inverted">
<div class="timeline-image scaleReveal"><img alt="Timeline" class="img-circle img-responsive" src="/images/timeline-6.png"></div>
<div class="timeline-panel rightReveal">
<div class="timeline-heading">
<h5 class="heading-1 mb15">{% t index_page.roadmap_11 %}</h5>
<h4 class="subheading">{% t index_page.roadmap_14 %}</h4>
</div>
<div class="timeline-body">
<p>{% t index_page.roadmap_15 %}</p>
</div>
</div>
</li>
</ul>
</div><!-- /.column -->
</div><!-- /.row -->
</div><!-- /.container -->
</section><!-- /.section -->
<!-- End Timeline -->
{% include contact.html background="background2" %}
{% include footer.html background="background1" %}
<!-- Javascript Files -->
{% include body_javascripts.html %}
{% include index_javascripts.html %}
</body>
</html>