-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
943 lines (873 loc) · 34.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
<!DOCTYPE html>
<html lang="en-US">
<head>
<!-- Required meta tags -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" />
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css"
integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link rel="stylesheet" type="text/css" href="css/reponsive.css" />
<link href="https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700,800,900" rel="stylesheet" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,600,700,800" rel="stylesheet" />
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css"
integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous" />
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/[email protected]/slick/slick.css" />
<link rel="stylesheet" type="text/css" href="css/slick-theme.css" />
<link href="https://unpkg.com/[email protected]/dist/aos.css" rel="stylesheet" />
<!-- animated css -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.7.0/animate.min.css" />
<!-- end animated css -->
<!-- chart css -->
<link rel="stylesheet" href="css/Chart.css" type="text/css">
<!-- end chart css -->
<!-- light box -->
<link rel="stylesheet" href="css/ekko-lightbox.css" type="text/css">
<!-- end light box -->
<title>Lonero</title>
</head>
<body>
<!-- Nav Bar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<div class="container">
<a class="navbar-brand" href="#">
<img src="img/LoneroLogo_20.png" class="d-inline-block align-top" alt="" />
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarSupportedContent">
<ul class="nav navbar-nav">
<li class="dropdown">
<a class="dropdown-toggle nav-link" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Home <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a class="dropdown-item" href="pocp.html"> PoCP</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link scroll" href="#about">About LNR</a>
</li>
<li class="nav-item">
<a class="nav-link scroll" href="#feature">Wallet</a>
</li>
<li class="nav-item">
<a class="nav-link scroll" href="#road-map">Roadmap</a>
</li>
<li class="nav-item">
<a class="nav-link scroll" href="#our-team">Our Team</a>
</li>
<li class="nav-item">
<a class="nav-link scroll" href="#contact">Contact</a>
</li>
</ul>
</div>
</div>
</nav>
<!-- Main Header section -->
<section id="top">
<div id="particles-js"></div>
<div class="container main-header">
<div class="row">
<div class="col-md-5 main-header-left">
<h3 id="motion">THE DECENTRALIZED </h3>
<h3 id="innovate">INTERNET</h3>
<p class="animated fadeInLeft delay-2s">
Lonero utilizes Cryptonote’s protocols and our HashBolt masternode consensus, taking security,
transaction speeds, and mining profits to a new global standard.
</p>
<a href="https://lonero.readthedocs.io/en/latest/Lonero/Crypto.html"
class="btn btn-lg btn-primary main-but-md">White Paper</a>
<a href="https://github.com/Lonero-Team" class="btn btn-lg btn-primary main-but-md" target="_blank">Lonero’s
GitHub</a>
</div>
<div class="col-md-7 main-header-right">
<img class="img-fluid w-100" src="img/SideImage.png" alt="sinova-header-blockchain-concept"
id="animateGraphic" />
</div>
</div>
<div class="row main-header-partners">
<div class="col-md-12">
<a href="https://www.starkdrones.org/" target="_blank"><img src="img/partners/stark_drones.png" alt="cnbs"
class="brands w-100" /></a>
</div>
</div>
</div>
</section>
<!-- About section -->
<section id="about">
<div class="container about" id="about">
<h1 class="main-title" data-aos="fade-up" data-aos-duration="2000" data-aos-offset="200">
About <span> LNR</span>
</h1>
<div class="row">
<div class="col-md-7 about-left" data-aos="fade-up" data-aos-duration="2000" data-aos-offset="200">
<article>
<p style="word-spacing: -1px;">Lonero(LNR) is a newly emerging cryptocurrency that aims to be the future of
digital cash. The
problem with current privacy coins, alt coins, and emerging cryptocurrencies relies mainly on stability,
security, and an unknown future. We aim to fix many of these stability issues, be extremely
decentralized, and have technology that actively supports the community.
<p style="word-spacing: -1px;">We are utilizing some of the most advanced technological protocols in order
to do so. This includes our
consensus protocols that support less barriers amongst ASIC vs. Non-ASIC systems, along with the
Cryptonote foundation’s widely trusted ring signature protocols, multiple layers of security, and a
utilization of “Proof of Work” and “Proof of Space” mining. </p>
<p style="word-spacing: -1px;">Among the technology we are also integrating a Decentralized Autonomous
Organization or DAO,
bounty programs, and a mathematical proof that allows further decentralization. We believe that mining
rewards shouldn’t merely be limited to hardware specifications but also to total mathematical
knowledge, so we provide a fair market game to everyone involved.</p>
</article>
</div>
<div class="col-md-5" data-aos="fade-up" data-aos-duration="500" data-aos-offset="200">
<iframe id="ytplayer" type="text/html" width="100%" height="250px"
src="https://www.youtube.com/embed/ax-wqHntKXg?autoplay=1" frameborder="0"></iframe>
</div>
</div>
</div>
<div class="container features" id="feature">
<h1 class="main-title" data-aos="fade-up" data-aos-duration="1000" data-aos-offset="200">
Wallet
</h1>
<div class="row features-content">
<div class="col-md-12 col-sm-12 features-image" data-aos="fade-up" data-aos-duration="1000"
data-aos-offset="200">
<img src="img/walletplaceholder.png" class="wallet" class="lonero-wallet">
<div class="overlay"></div>
<a href="https://github.com/Lonero-Team/Lonero-Wallet-2.0/releases" target="_blank"
class="btn btn-default main-but-md dowanload">Download</a>
</div>
</div>
</div>
<!-- mission -->
<div class="container specification">
<h1 class="main-title" style="margin-top:20px;" data-aos="fade-up" data-aos-duration="2000" data-aos-offset="200">
Mission
</h1>
<p data-aos="fade-up" data-aos-duration="2000" data-aos-offset="200">
We aim to ensure that projects built on top of Lonero are beneficial for the industry and plan on making
strategic partnerships for continued sustainability and growth. We will always advocate for privacy,
security, and social awareness of topics that effect the industry. This includes: “Supporting a free
market”, “Decentralized usage of crypto”, “Avoiding market monopolies”, “Privacy in our digital age”,
and sustaining our community.
</p>
</div>
<!-- end mission -->
<!-- Sepecification section -->
<div class="container specification">
<h1 class="main-title" data-aos="fade-up" data-aos-duration="1000" data-aos-offset="200">
Specifications
</h1>
<p data-aos="fade-up" data-aos-duration="2000" data-aos-offset="200">
The components of what makes Lonero unique is split into four different parts: The HashBolt
Masternode consensus, the DAO integrations, Cryptonote’s ring signature integration, and multipath
layer security.
</p>
<div class="row specification-list">
<div class="col-md-3 specification-list-item">
<div class="specification-list-item-bg" data-aos="flip-left" data-aos-duration="3000">
<img src="img/specifications/01.png" alt="sinova transactions" />
<h5>Utilizes our HashBolt masternode consensus that allows for mining on ASIC and Non-ASIC systems.</h5>
<!-- <p>
2 Minutes
</p> -->
</div>
</div>
<div class="col-md-3 specification-list-item">
<div class="specification-list-item-bg" data-aos="flip-right" data-aos-duration="3000">
<img src="img/specifications/02.png" alt="sinova decentralization" />
<h5>Our decentralized technology allows both staking and mining in order to keep the technology ahead of the
market.</h5>
<!-- <p>
X22i is developed to be ASIC, FPGA and QUANTUM resistant to
prevent the break of the decentralized consensus mechanism.
</p> -->
</div>
</div>
<div class="col-md-3 specification-list-item">
<div class="specification-list-item-bg" data-aos="flip-left" data-aos-duration="3000">
<img src="img/specifications/03.png" alt="sinova total supply" />
<h5>Lonero outperforms leading privacy coins by integrating HashBolt, higher block size, segregated
witnesses, as well as a lightning network.</h5>
</div>
</div>
<div class="col-md-3 specification-list-item">
<div class="specification-list-item-bg" data-aos="flip-right" data-aos-duration="3000">
<img src="img/specifications/04.png" alt="sinova fair launch" />
<h5>Prioritizes safe and secure transactions by utilizing Cryptonote’s ring signature protocol and our
custom multi-layer encryption.</h5>
</div>
</div>
</div>
<div class="row" style="margin-top:10em">
<div class="col-md-12 specification-left" data-aos="zoom-in" data-aos-duration="2000" data-aos-offset="200">
<a href="img/hashbolt.jpg" data-toggle="lightbox">
<img src="img/hashbolt.jpg" class="img-fluid hash-bot">
</a>
</div>
</div>
</div>
</section>
<!-- Features -->
<section id="feature">
<!-- finacial status -->
<div class="container specification">
<h1 class="main-title">
CIRCULATING SUPPLY<span> AND DISTRIBUTION</span>
</h1>
<canvas id="finace" width="600" height="200"></canvas>
</div>
<!-- finacial status -->
</section>
<!-- Road Map -->
<section id="road-map">
<div class="container road-map" id="road-map">
<h1 class="main-title">Road <span>Map</span></h1>
<div class="roadmap road-map-hidden" style="display:none;">
<div class="row road-map-item">
<div class="col-md-1 road-map-item-date">
<h5 class="rotate">September 20,2018</h5>
</div>
<div class="col-md-3 road-map-item-descption">
<p class="content-hide">
<i class="fas fa-circle blue"></i> P2Pool Mining Integration.<br>
</p>
</div>
<div class="col-md-8 road-map-item-progress">
<div class="road-map-item-progress-bg-bar">
<hr />
</div>
<div class="road-map-item-progress-bg">
<div class="progress">
<div class="progress-bar" role="progressbar" data-percent="90" style="max-width:90%;" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100">
90%
</div>
</div>
</div>
</div>
</div>
</div>
<div class="roadmap road-map-hidden" style="display:none;">
<div class="row road-map-item">
<div class="col-md-1 road-map-item-date">
<h5 class="rotate">October 2018</h5>
</div>
<div class="col-md-3 road-map-item-descption">
<p class="content-hide">
<i class="fas fa-circle blue"></i> Custom Block Explorer Integration.<br>
</p>
</div>
<div class="col-md-8 road-map-item-progress">
<div class="road-map-item-progress-bg-bar">
<hr />
</div>
<div class="road-map-item-progress-bg">
<div class="progress">
<div class="progress-bar" role="progressbar" data-percent="50" style="max-width:50%;" aria-valuenow="50"
aria-valuemin="0" aria-valuemax="100">
50%
</div>
</div>
</div>
</div>
</div>
</div>
<div class="roadmap road-map-hidden" style="display:none;">
<div class="row road-map-item">
<div class="col-md-1 road-map-item-date">
<h5 class="rotate">November 2018</h5>
</div>
<div class="col-md-3 road-map-item-descption">
<p class="content-hide">
<i class="fas fa-circle blue"></i> Developer Update.<br>
</p>
</div>
<div class="col-md-8 road-map-item-progress">
<div class="road-map-item-progress-bg-bar">
<hr />
</div>
<div class="road-map-item-progress-bg">
<div class="progress">
<div class="progress-bar" role="progressbar" data-percent="30" style="max-width:30%;" aria-valuenow="30"
aria-valuemin="0" aria-valuemax="100">
30%
</div>
</div>
</div>
</div>
</div>
</div>
<div class="roadmap road-map-hidden" style="display:none;">
<div class="row road-map-item">
<div class="col-md-1 road-map-item-date">
<h5 class="rotate">December 2018</h5>
</div>
<div class="col-md-3 road-map-item-descption">
<p class="content-hide">
<i class="fas fa-circle blue"></i> Open Source Mining Hardware Release.<br>
</p>
</div>
<div class="col-md-8 road-map-item-progress">
<div class="road-map-item-progress-bg-bar">
<hr />
</div>
<div class="road-map-item-progress-bg">
<div class="progress">
<div class="progress-bar" role="progressbar" data-percent="90" style="max-width:90%;" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100">
90%
</div>
</div>
</div>
</div>
</div>
</div>
<div class="roadmap road-map-hidden" style="display:none;">
<div class="row road-map-item">
<div class="col-md-1 road-map-item-date">
<h5 class="rotate">January 2019</h5>
</div>
<div class="col-md-3 road-map-item-descption">
<p class="content-hide">
<i class="fas fa-circle blue"></i> Continued Partnerships and Expansion.<br>
</p>
</div>
<div class="col-md-8 road-map-item-progress">
<div class="road-map-item-progress-bg-bar">
<hr />
</div>
<div class="road-map-item-progress-bg">
<div class="progress">
<div class="progress-bar" role="progressbar" data-percent="90" style="max-width:90%;" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100">
90%
</div>
</div>
</div>
</div>
</div>
</div>
<div class="roadmap road-map-hidden" style="display:none;">
<div class="row road-map-item">
<div class="col-md-1 road-map-item-date">
<h5 class="rotate">May 19, 2019</h5>
</div>
<div class="col-md-3 road-map-item-descption">
<p class="content-hide">
<i class="fas fa-circle blue"></i> Lonero OS v1 Launch (Stark Drones Collab).<br>
</p>
</div>
<div class="col-md-8 road-map-item-progress">
<div class="road-map-item-progress-bg-bar">
<hr />
</div>
<div class="road-map-item-progress-bg">
<div class="progress">
<div class="progress-bar" role="progressbar" data-percent="90" style="max-width:90%;" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100">
90%
</div>
</div>
</div>
</div>
</div>
</div>
<div class="roadmap road-map-hidden" style="display:none;">
<div class="row road-map-item">
<div class="col-md-1 road-map-item-date">
<h5 class="rotate">October 31, 2019</h5>
</div>
<div class="col-md-3 road-map-item-descption">
<p class="content-hide">
<i class="fas fa-circle blue"></i> Decentralized Internet Package Beta v1 Release.<br>
</p>
</div>
<div class="col-md-8 road-map-item-progress">
<div class="road-map-item-progress-bg-bar">
<hr />
</div>
<div class="road-map-item-progress-bg">
<div class="progress">
<div class="progress-bar" role="progressbar" data-percent="90" style="max-width:90%;" aria-valuenow="90"
aria-valuemin="0" aria-valuemax="100">
90%
</div>
</div>
</div>
</div>
</div>
</div>
<section class="row">
<div class="mx-auto">
<a href="#" class="text-center btn btn-lg btn-primary main-but-md" id="loadmore" style="display:none;">Load
More...</a>
<a href="#" class="text-center btn btn-lg btn-primary main-but-md" id="less" style="display:none;">Less
More...</a>
</div>
</section>
</div>
</section>
<!-- Our Team -->
<section id="our-team">
<div class="container our-team" id="our-team">
<h1 class="main-title"><span>Team</span></h1>
<ul class="row our-team-content" id="our-team-slider">
<li class="col-md-6">
<div class="our-team-content-item clearfix">
<div class="our-team-content-item-top">
<div class="float-left our-team-content-item-top-img">
<img src="img/team/Andrew Kamal-founder.jpg" alt="Andrew Kamal" class="img-fluid" />
</div>
<div class="float-left our-team-content-item-top-info">
<h4>Andrew Kamal</h4>
<span>Founder</span>
<div class="our-team-content-item-top-social-icons">
<a href="https://twitter.com/gamer456148" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/gamer456148/" target="_blank"><i
class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
<div class="float-none our-team-content-item-bottom">
<p>
Founder - Andrew is an inventor who has been developing blockchain technologies since 2011.
</p>
</div>
</div>
</li>
<li class="col-md-6">
<div class="our-team-content-item clearfix">
<div class="our-team-content-item-top">
<div class="float-left our-team-content-item-top-img">
<img src="img/team/Luke Yaldo.png" alt="Luke Yaldo" class="img-fluid" />
</div>
<div class="float-left our-team-content-item-top-info">
<h4>Luke Yaldo</h4>
<span>Co-Founder
</span>
<div class="our-team-content-item-top-social-icons">
<a href="https://twitter.com/LukeYaldo" target="_blank"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/luke-yaldo-253a02136/" target="_blank"><i
class="fab fa-linkedin-in"></i></a>
</div>
</div>
</div>
<div class="float-none our-team-content-item-bottom">
<p>
Co-Founder- Luke works to bring technologies to light that provide immense value to society.
</p>
</div>
</div>
</li>
</ul>
</div>
</section>
<!-- join with sin -->
<section id="contact">
<div class="container specification" id="contact">
<h1 class="main-title">
JOIN US
</h1>
<div class="row specification-list">
<div class="col-md-6 specification-list-item">
<a class="twitter-timeline" href="https://twitter.com/lonerolnr" data-tweet-limit="1">Tweets
by Lonero</a>
</div>
<div class="col-md-6 specification-list-item">
<iframe src="https://discord.com/widget?id=639489591664967700&theme=dark" width="100%" height="268"
allowtransparency="true" frameborder="0"></iframe>
</div>
</div>
</div>
</section>
<!-- end join -->
<!-- Footer -->
<div class="container-fluid footer">
<div class="container">
<div class="row">
<div class="col-md-3">
<h5>LONERO TOOLS</h5>
<ul>
<li><a href="https://www.starkdrones.org/home/os">OS</a></li>
<li><a
href="https://lonero.readthedocs.io/en/latest/Decentralized%20Internet%20Docs/Main%20Installation%20Methods.html">SDK</a>
</li>
<li><a
href="https://lonero.readthedocs.io/en/latest/Decentralized%20Internet%20Docs/Critical%20Components.html">Guide</a>
</li>
<li><a href="https://github.com/Lonero-Team/Lonero-Wallet-2.0/releases">Wallet</a></li>
<li><a href="https://leanpub.com/futurism/">LeanPub</a></li>
<li><a
href="https://lonero.readthedocs.io/en/latest/LNR%20Next%20Generation%20Hardware/ChainBoard.html">ChainBoard</a>
</li>
<li><a href="https://lonero.readthedocs.io/">ReadtheDocs</a></li>
</ul>
</div>
<div class="col-md-3">
<h5>Information</h5>
<ul>
<li><a href="https://lonero-team.github.io/API/">API</a></li>
<li><a href="https://github.com/Lonero-Team/Lonero-Community/wiki">Wiki</a></li>
<li><a href="https://hackernoon.com/u/TheLoneroFoundation">Blog</a></li>
<li><a href="https://minds.com/lonerolnr">Minds</a></li>
<li><a href="https://www.openhub.net/p/decentralized-internet">Open Hub</a></li>
</ul>
</div>
<div class="col-md-3">
<h5>Support</h5>
<ul>
<li><a href="https://hackaday.io/project/171604-building-a-decentralized-internet/details">Log</a></li>
<li><a href="https://lonero-team.github.io/helpdesk/">FAQ</a></li>
<li><a href="https://reddit.com/u/lonerolnr">Reddit</a></li>
<li><a href="https://gitter.im/Decentralized-Internet/community?source=orgpage">Glittter</a></li>
</ul>
</div>
<div class="col-md-3">
<h5>Subscribe</h5>
<form>
<label>Get the latest news and updates</label>
<div class="input-group">
<input type="text" class="form-control" placeholder="Your email" name="email" id="email" />
<div class="input-group-append">
<button type="button" class="input-group-text footer-btn" id="subcribe">Submit</button>
</div>
<label class="text text-success text-center blue" id="success"></label>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"
integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous">
</script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"
integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous">
</script>
<script type="text/javascript" src="//cdn.jsdelivr.net/npm/[email protected]/slick/slick.min.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<!-- stats.js lib -->
<!-- <script src="http://threejs.org/examples/js/libs/stats.min.js"></script> -->
<script src="https://unpkg.com/[email protected]/dist/aos.js"></script>
<script src="js/readMoreJS.min.js"></script>
<!-- chart js -->
<script src="js/Chart.js"></script>
<!-- end chart js -->
<!-- facebook pluging -->
<script async defer crossorigin="anonymous" src="https://connect.facebook.net/en_GB/sdk.js#xfbml=1&version=v3.3">
</script>
<!-- end facebook pluging -->
<script src="https://cdn.jsdelivr.net/npm/@widgetbot/html-embed"></script>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
<script src="js/ekko-lightbox.min.js"></script>
<script src="js/ekko-lightbox.min.js.map"></script>
<script src="https://unpkg.com/stein-js-client"></script>
<script>
$('#subcribe').click(function () {
var email = $('#email').val();
console.log(email);
const store = new SteinStore("https://api.steinhq.com/v1/storages/5fa37d555d3cdc44fcd7d6be");
store.append("Sheet1", [{
email: email,
}])
.then(res => {
$('#success').text('Thank you for subscribing!');
$('#success').fadeOut(8000);
console.log(res);
});
});
</script>
<script>
$(document).on('click', '[data-toggle="lightbox"]', function (event) {
event.preventDefault();
$(this).ekkoLightbox();
});
</script>
<script>
$readMoreJS.init({
target: '.dummy', // Selector of the element the plugin applies to (any CSS selector, eg: '#', '.'). Default: ''
numOfWords: 50, // Number of words to initially display (any number). Default: 50
toggle: true, // If true, user can toggle between 'read more' and 'read less'. Default: true
moreLink: 'read more ...', // The text of 'Read more' link. Default: 'read more ...'
lessLink: 'read less' // The text of 'Read less' link. Default: 'read less'
});
</script>
<script>
var ctx = document.getElementById('finace').getContext('2d');
var chart = new Chart(ctx, {
// The type of chart we want to create
type: 'bar',
data: {
labels: ["Founder", "Co-Founder", "Design & Marketing Team", "Content & Media Team", "Lonero Foundation",
"Public Release"
],
datasets: [{
// label: 'CIRCULATING SUPPLY AND DISTRIBUTION',
backgroundColor: '#00aeef',
data: [15000000, 8000000, 1000000, 1000000, 5000000, 55000000]
}]
},
// Configuration options go here
options: {
responsive: true,
maintainAspectRatio: false,
legend: {
display: false
},
}
});
</script>
<script>
$(function () {
$(".roadmap").slice(0, 1).show();
$("#loadMore").on('click', function (e) {
e.preventDefault();
$("div:hidden").slice(0, 4).slideDown();
if ($("div:hidden").length == 0) {
$("#load").fadeOut('slow');
}
$('html,body').animate({
scrollTop: $(this).offset().top
}, 1500);
});
});
// $('a[href=#top]').click(function () {
// $('body,html').animate({
// scrollTop: 0
// }, 600);
// return false;
// });
</script>
<script>
AOS.init();
</script>
<script type="text/javascript">
$(function () {
var slickOpts = {
dots: true,
infinite: true,
speed: 500,
slidesToShow: 2,
slidesToScroll: 2,
responsive: [{
breakpoint: 768,
settings: {
slidesToShow: 1,
slidesToScroll: 1
}
}]
};
var slickOptsTwo = {
dots: true,
infinite: true,
speed: 500,
slidesToShow: 1,
slidesToScroll: 1
};
// Init the slick
$("#our-team-slider").slick(slickOpts);
$("#attribute-slider").slick(slickOptsTwo);
var slickEnabled = true;
});
</script>
<script type="text/javascript">
particlesJS("particles-js", {
particles: {
number: {
value: 70,
density: {
enable: true,
value_area: 631.3181133058181
}
},
color: {
value: "#00aeef"
},
shape: {
type: "circle",
stroke: {
width: 0,
color: "#00aeef"
},
polygon: {
nb_sides: 3
}
},
opacity: {
value: 1,
random: false,
anim: {
enable: false,
speed: 1,
opacity_min: 0.1,
sync: false
}
},
size: {
value: 2,
random: true,
anim: {
enable: false,
speed: 100,
size_min: 0.1,
sync: false
}
},
line_linked: {
enable: true,
distance: 63.131811330581804,
color: "#00aeef",
opacity: 0.4,
width: 1
},
move: {
enable: true,
speed: 6,
direction: "none",
random: false,
straight: false,
out_mode: "out",
bounce: false,
attract: {
enable: false,
rotateX: 600,
rotateY: 1200
}
}
},
interactivity: {
detect_on: "canvas",
events: {
onhover: {
enable: true,
mode: "repulse"
},
onclick: {
enable: true,
mode: "push"
},
resize: true
},
modes: {
grab: {
distance: 400,
line_linked: {
opacity: 1
}
},
bubble: {
distance: 400,
size: 40,
duration: 2,
opacity: 8,
speed: 3
},
repulse: {
distance: 200,
duration: 0.4
},
push: {
particles_nb: 4
},
remove: {
particles_nb: 2
}
}
},
retina_detect: true
});
var count_particles, stats, update;
stats = new Stats();
stats.setMode(0);
stats.domElement.style.position = "absolute";
stats.domElement.style.left = "0px";
stats.domElement.style.top = "0px";
document.body.appendChild(stats.domElement);
count_particles = document.querySelector(".js-count-particles");
update = function () {
stats.begin();
stats.end();
if (
window.pJSDom[0].pJS.particles &&
window.pJSDom[0].pJS.particles.array
) {
count_particles.innerText =
window.pJSDom[0].pJS.particles.array.length;
}
requestAnimationFrame(update);
};
requestAnimationFrame(update);
</script>
<script>
$(function () {
$("#loadmore").show();
$(".road-map-hidden").slice(0, 2).show();
$("#loadmore").on('click', function (e) {
e.preventDefault();
$(".road-map-hidden:hidden").slice(0, 2).slideDown();
if ($(".road-map-hidden:hidden").length == 0) {
$("#load").fadeOut('slow');
$("#loadmore").css('display', 'none');
$("#less").show();
}
// $('html,body').animate({
// scrollTop: $(this).offset().top
// },1500);
});
$("#less").on('click', function (e) {
e.preventDefault();
$(".road-map-hidden").css('display', 'none')
$("#load").fadeOut('slow');
$(".road-map-hidden:hidden").slice(0, 2).show();
$("#loadmore").show();
$("#less").css('display', 'none');
});
});
</script>
<script>
$readMoreJS.init({
target: '.content-hide',
numOfWords: 18,
toggle: true,
moreLink: 'read more ...',
lessLink: 'read less',
linkClass: 'rm-link',
containerClass: false
});
</script>
<script>
$(document).ready(function () {
var scrollLink = $('.scroll');
// Smooth scrolling
scrollLink.click(function (e) {
e.preventDefault();
$('body,html').animate({
scrollTop: $(this.hash).offset().top
}, 1000);
});
// Active link switching
$(window).scroll(function () {
var scrollbarLocation = $(this).scrollTop();
scrollLink.each(function () {
if ($(this.hash).length) {
var sectionOffset = $(this.hash).offset().top - 20;
}
if (sectionOffset <= scrollbarLocation) {
$(this).parent().addClass('active');
$(this).parent().siblings().removeClass('active');
}
})
})
})
</script>
</body>
</html>