forked from Orelo-Software/eden-site
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1916 lines (1876 loc) · 75.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
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
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="zxx" class="js">
<head>
<meta charset="utf-8" />
<meta name="author" content="Softnio" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, shrink-to-fit=no"
/>
<meta name="description" content="" />
<!-- Fav Icon -->
<link rel="shortcut icon" href="images/favicon.ico" />
<!-- Site Title -->
<title>Eden on EOS</title>
<!-- Bundle and Base CSS -->
<link rel="stylesheet" href="assets/css/vendor.bundle.css?ver=1930" />
<link
rel="stylesheet"
href="assets/css/style-azalea.css?ver=1930"
id="changeTheme"
/>
<!-- Extra CSS -->
<link rel="stylesheet" href="assets/css/theme.css?ver=1930" />
<script src="https://unpkg.com/vue@next"></script>
</head>
<body class="nk-body body-wider bg-theme">
<a name="top"></a>
<div class="nk-wrap">
<header
class="nk-header page-header is-transparent is-sticky is-dark"
id="header"
>
<!-- Header @s -->
<div class="header-main">
<div class="header-container container container-xxl">
<div class="header-wrap">
<!-- Logo @s -->
<div
class="header-logo logo animated"
data-animate="fadeInDown"
data-delay=".6"
>
<a href="./" class="logo-link">
<img
class="logo-dark"
src="images/eden-logo.png"
srcset="images/eden-logo.png 2x"
alt="logo"
/>
<img
class="logo-light"
src="images/eden-logo.png"
srcset="images/eden-logo.png 2x"
alt="logo"
/>
</a>
</div>
<!-- Menu Toogle @s -->
<div class="header-nav-toggle">
<a
href="#"
class="navbar-toggle"
data-menu-toggle="header-menu"
>
<div class="toggle-line">
<span></span>
</div>
</a>
</div>
<!-- Menu @s -->
<div
class="header-navbar animated"
data-animate="fadeInDown"
data-delay=".6"
>
<nav class="header-menu" id="header-menu">
<ul class="menu">
<li class="menu-item">
<a class="menu-link nav-link " href="#top"
>Home</a
>
</li>
<li class="menu-item has-sub">
<a class="menu-link nav-link menu-toggle" href="#"
>Get Involved</a
>
<ul class="menu-sub menu-drop">
<li class="menu-item has-sub">
<a class="menu-link nav-link menu-toggle" href="#"
>Become a Member</a
>
<ul class="menu-sub menu-drop">
<li class="menu-item">
<a
class="menu-link nav-link"
target="_blank"
href="https://t.me/EdenOSinfo"
>Join Telegram</a
>
</li>
<li class="menu-item">
<a
class="menu-link nav-link"
target="_blank"
href="https://forums.eoscommunity.org/t/want-join-the-eden-genesis-community-introduce-yourself-to-the-community-here/3273"
>Intro on Forum</a
>
</li>
</ul>
</li>
<li class="menu-item has-sub">
<li class="menu-item">
<a
class="menu-link nav-link"
href="page-partner.html"
>Contribute your talent<span
class="badge"
></span
></a>
</li>
</li>
</ul>
</li>
</ul>
<ul class="menu-btns">
<li>
<a
target="_blank"
href="https://genesis.eden.eoscommunity.org/"
class="
btn
btn-md
btn-thin
btn-outline
btn-auto
btn-primary
btn-round
no-change
"
><span>Member Portal</span></a
>
</li>
</ul>
</nav>
</div>
<!-- .header-navbar @e -->
</div>
</div>
</div>
<!-- .header-main @e -->
<div class="banner banner-fs tc-light">
<div class="nk-block nk-block-sm nk-block-header my-auto">
<div class="container container-xxl pt-5">
<div
class="
row
align-items-center
justify-content-center justify-content-lg-between
gutter-vr-30px
"
>
<div class="col-lg-6 order-lg-last">
<div
class="banner-gfx banner-gfx-auto animated"
data-animate="fadeInUp"
data-delay=".7"
>
<img src="images/azalea/gfx-y.png" alt="header" />
</div>
</div>
<!-- .col -->
<div
class="col-xl-5 col-lg-6 col-sm-10 text-center text-lg-left"
>
<div class="banner-caption">
<div id="app"></div>
<h1
class="title title-lg ttu animated"
data-animate="fadeInUp"
data-delay=".8"
>
Eden on EOS
</h1>
<p
class="lead animated"
data-animate="fadeInUp"
data-delay=".9"
>
The first decentralised community based on Fractal
Democracy utilsing the power of <a>EdenOS</a>.
</p>
<div
class="cpn-action animated"
data-animate="fadeInUp"
data-delay="1"
>
<a class="btn btn-primary btn-round" href="#main"
>Learn more</a
>
</div>
</div>
</div>
<!-- .col -->
</div>
<!-- .row -->
</div>
</div>
<div class="nk-block nk-block-status">
<div class="container container-xxl">
<div class="row gutter-vr-40px justify-content-between flex-end">
<div
class="col-xxl-5 col-xl-6 col-lg-7 text-center text-sm-left"
></div>
</div>
</div>
</div>
<div class="nk-block nk-block-actions">
<div class="container container-xxl">
<div class="row gutter-vr-40px align-items-center">
<div
class="
col-sm-7
d-flex
justify-content-center justify-content-sm-start
"
>
<ul
class="
btn-grp btn-grp-break
justify-content-center justify-content-sm-start
gutter-vr-20px
"
>
<li
class="animated"
data-animate="fadeInUp"
data-delay="0.8"
>
<div class="row justify-content-around">
<div class="col-sm-4 col-md-6 col-lg-4 col-xl-5">
<div
class="status-info animated"
data-animate="fadeInUp"
data-delay="0.9"
>
<h6
class="
title title-xxs
tc-default
status-title
ttu
"
>
Current Member count
</h6>
<div id="stats"></div>
</div>
</div>
</div>
</li>
</ul>
</div>
<div class="col-sm-5">
<ul
class="
social-links social-links-s2
justify-content-center justify-content-sm-end
animated
"
data-animate="fadeInUp"
data-delay="1"
>
<li>
<a target="_blank" href="https://twitter.com/EdenOnEOS"
><em class="fab fa-twitter"></em
></a>
</li>
<li>
<a
target="_blank"
href="https://www.youtube.com/channel/UCqVNhsG33s9qCCPNf7LdaMg"
><em class="fab fa-youtube"></em
></a>
</li>
<li>
<a
target="_blank"
href="https://github.com/eoscommunity/Eden"
><em class="fab fa-github"></em
></a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Place Particle Js -->
<div
id="particles-bg"
class="particles-container is-fixed particles-bg op-20"
></div>
</div>
</header>
<main class="nk-pages tc-light">
<!-- // -->
<a name="main"></a>
<section class="section" id="ecosystems">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-6">
<div class="section-head section-head-s2">
<h2
class="title title-xl animated"
data-animate="fadeInUp"
data-delay="0.1"
title="Core Elements"
>
Eden on Eos
</h2>
</div>
</div>
</div>
</div>
<div class="container container-xxl">
<div class="nk-block">
<div class="row text-center align-items-lg-start gutter-vr-40px">
<div class="col-lg-3 col-sm-6">
<div
class="feature feature-s6 feature-s6-1 animated"
data-animate="fadeInUp"
data-delay="0.3"
>
<div class="feature-text">
<h5 class="title title-sm ttu">Maximize Independence</h5>
<p>
Eden is a community working to maximize the power and
independence of its members and thereby securing life,
liberty, property, and justice for all.
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div
class="feature feature-s6 feature-s6-2 animated"
data-animate="fadeInUp"
data-delay="0.4"
>
<div class="feature-text">
<h5 class="title title-sm ttu">Build Consensus</h5>
<p>
A team of people can be more powerful than the sum of
its members, but all teams need a means to effectively
work together & attain their full potential.
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div
class="feature feature-s6 feature-s6-3 animated"
data-animate="fadeInUp"
data-delay="0.5"
>
<div class="feature-text">
<h5 class="title title-sm ttu">Fractal Democracy</h5>
<p>
EdenOS is a revolutionary new democratic process that
protects and enhances the independence and power of
those who join. When you join the Eden community, you
gain access to a group of people working together to
empower you and your family to make a bigger impact in
the world.
</p>
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div
class="feature feature-s6 feature-s6-4 animated"
data-animate="fadeInUp"
data-delay="0.6"
>
<div class="feature-text">
<h5 class="title title-sm ttu">Total Transparency</h5>
<p>
A core value of Eden on EOS is transparency, all
elections and meetings of Chief Delegates are recorded
and posted on IPFS for all to see.
</p>
</div>
</div>
</div>
</div>
<div
class="
bg-image bg-contain bg-bottom-center bg-ecosystems
animated
d-none d-sm-block
"
data-animate="fadeInUp"
data-delay="0.2"
>
<img src="images/globe-particle.png" alt="globe" />
</div>
</div>
</div>
</section>
<!-- // -->
<section class="section" id="platform">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-6">
<div class="section-head section-head-s2">
<a href="https://genesis.eden.eoscommunity.org/" target="_blank"> <h2
class="title title-xl animated"
data-animate="fadeInUp"
data-delay="0.1"
title="Eden Operating System"
>
Eden OS
</h2>
</a>
</div>
</div>
</div>
</div>
<div class="container container-xxl">
<div class="nk-block">
<div class="tab-content">
<div class="tab-pane fade show active" id="tab-1-1">
<div
class="
row
align-items-center
justify-content-between
gutter-vr-40px
"
>
<div class="col-lg-6 order-lg-last">
<div
class="nk-block-img nk-block-ca animated"
data-animate="fadeInUp"
data-delay="0.2"
>
<div
class="nk-circle-animation nk-df-center fast"
></div>
<a href="https://genesis.eden.eoscommunity.org/" target="_blank">
<img
class="shadow rounded"
src="images/edenos.png"
alt=""
/>
</a>
</div>
</div>
<div class="col-lg-5">
<div class="nk-block-text mgb-m30">
<h2
class="title title-md animated"
data-animate="fadeInUp"
data-delay="0.2"
>
An Open Platform for Fractal Governance
</h2>
<p
class="animated"
data-animate="fadeInUp"
data-delay="0.2"
>
Eden on EOS uses the <a href="https://github.com/eoscommunity/Eden" target="_blank">Open Source</a> software Eden OS which is a tool
to conduct fractal elections and manage the groups
treasury through the use of EOS.IO Smart Contracts.
</p>
<div
class="feature feature-inline feature-middle animated"
data-animate="fadeInUp"
data-delay="0.3"
>
<div class="feature-icon feature-icon-md">
<em
class="icon icon-md icon-grd ikon ikon-bulb"
></em>
</div>
<div class="feature-text">
<p>
In every election each participator is placed into
Zoom calls with other participants to talk about
their ideas.
</p>
</div>
</div>
<div
class="feature feature-inline feature-middle animated"
data-animate="fadeInUp"
data-delay="0.4"
>
<div class="feature-icon feature-icon-md">
<em
class="icon icon-md icon-grd ikon ikon-paricle"
></em>
</div>
<div class="feature-text">
<p>
Our on-chain app enable partipants to vote for their favourite candidate in real time during each election round.
</p>
</div>
</div>
<div
class="feature feature-inline feature-middle animated"
data-animate="fadeInUp"
data-delay="0.5"
>
<div class="feature-icon feature-icon-md">
<em
class="icon icon-md icon-grd ikon ikon-bulb-2"
></em>
</div>
<div class="feature-text">
<p>
At the last round, Block headers from the Bitcoin is used to create a random seed where the final election winner known as the "Head Delegate" is picked at random!
</p>
</div>
</div>
<div
class="feature feature-inline feature-middle animated"
data-animate="fadeInUp"
data-delay="0.6"
>
<div class="feature-icon feature-icon-md">
<em
class="icon icon-md icon-grd ikon ikon-document-2"
></em>
</div>
<div class="feature-text">
<p>
The public can fully audit the Smart Contracts and user votes at any time, more languages and quality of life improvements are on the way.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="tab-pane fade" id="tab-1-2">
<div
class="
row
align-items-center
justify-content-between
gutter-vr-40px
"
>
<div class="col-lg-6 order-lg-last">
<div
class="nk-block-img nk-block-ca animated"
data-animate="fadeInUp"
data-delay="0.2"
>
<div
class="nk-circle-animation nk-df-center fast"
></div>
<!-- .circle-animation -->
<img
class="shadow rounded"
src="images/edenos.png"
alt=""
/>
</div>
</div>
<div class="col-lg-5">
<div class="nk-block-text mgb-m30">
<h2
class="title title-md animated"
data-animate="fadeInUp"
data-delay="0.2"
>
A Open Platform for our Participators
</h2>
<p
class="animated"
data-animate="fadeInUp"
data-delay="0.2"
>
Each participator can choose the trader and to sign a
contract.
</p>
<div
class="feature feature-inline feature-middle animated"
data-animate="fadeInUp"
data-delay="0.3"
>
<div class="feature-icon feature-icon-md">
<em
class="icon icon-md icon-grd ikon ikon-bulb"
></em>
</div>
<div class="feature-text">
<p>
User have full access to trading consectetur
adipiscing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua.
</p>
</div>
</div>
<div
class="feature feature-inline feature-middle animated"
data-animate="fadeInUp"
data-delay="0.4"
>
<div class="feature-icon feature-icon-md">
<em
class="icon icon-md icon-grd ikon ikon-paricle"
></em>
</div>
<div class="feature-text">
<p>
Our multi-cryptocurrency exchange will uis aute
irure dolor in reprehenderit in voluptate velit
uuntur magni dolores esse cillum.
</p>
</div>
</div>
<div
class="feature feature-inline feature-middle animated"
data-animate="fadeInUp"
data-delay="0.5"
>
<div class="feature-icon feature-icon-md">
<em
class="icon icon-md icon-grd ikon ikon-bulb-2"
></em>
</div>
<div class="feature-text">
<p>
Thanks to a special Zoom integration, EdenOS is
able to spawn and direct election participants to
Zoom calls.
</p>
</div>
</div>
<div
class="feature feature-inline feature-middle animated"
data-animate="fadeInUp"
data-delay="0.6"
>
<div class="feature-icon feature-icon-md">
<em
class="icon icon-md icon-grd ikon ikon-document-2"
></em>
</div>
<div class="feature-text">
<p>
Because the app runs entirely on chain, users can
inspect total transparency during the election
process.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- .container -->
</section>
<!-- // -->
<section class="section" id="roadmap">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-6">
<div class="section-head section-head-s2">
<h2
class="title title-xl animated"
data-animate="fadeInUp"
data-delay="0.1"
title="ROADMAP"
>
ROADMAP
</h2>
</div>
</div>
</div>
</div>
<div class="container container-xxl">
<div class="nk-block">
<div
class="roadmap-wrap roadmap-wrap-ovl-right text-center animated"
data-animate="fadeInUp"
data-delay="0.3"
>
<div class="roadmap-line-s2"></div>
<div
class="roadmap-slider has-carousel carousel-nav-center"
data-blank="true"
data-items="5"
data-items-tab-l="4"
data-items-tab-p="3"
data-items-mobile="2"
data-margin="-1"
data-navs="true"
>
<div class="roadmap roadmap-s2 roadmap-i1 roadmap-finished">
<h6 class="roadmap-year-s2">Q1 2021</h6>
<h5 class="title title-sm roadmap-date">March - July</h5>
<div class="roadmap-text">
<p>Ran two trial elections.</p>
</div>
</div>
<div class="roadmap roadmap-s2 roadmap-i2 roadmap-running">
<h6 class="roadmap-year-s2">Q4 2021</h6>
<h5 class="title title-sm roadmap-date">
September - April 2023
</h5>
<div class="roadmap-text">
<p>
Ran Eden on EOSs first official election with a total
treasury of 200,000 EOS.
</p>
</div>
</div>
<div class="roadmap roadmap-s2 roadmap-i3">
<h6 class="roadmap-year-s2">Q4 2022</h6>
<h5 class="title title-sm roadmap-date">
November
</h5>
<div class="roadmap-text">
<p>
Launch of EOS's quadratic funding service <a target="_blank" href="https://pomelo.io">Pomelo.io</a>
</p>
</div>
</div>
<div class="roadmap roadmap-s2 roadmap-i4">
<h6 class="roadmap-year-s2">Q1 2022</h6>
<h5 class="title title-sm roadmap-date">
April - September 2022
</h5>
<div class="roadmap-text">
<p>
Election election #2 will begin with new bi-laws first set by Daniel Larimer.
</p>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="section">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-6">
<div class="section-head section-head-s2">
<h2
class="title title-xl animated"
data-animate="fadeInUp"
data-delay="0.1"
title="Chief Delegates"
>
Our Chief Delegates
</h2>
<p class="" data-animate="fadeInUp" data-delay="0.2">
Our currently elected Head and Chief Delegates from the October 9th 2021 election.</a>
</p>
</div>
</div>
</div>
</div>
<div class="container container-xxl">
<div class="nk-block nk-block-sm">
<div class="row">
<div class="col-md-4 col-lg-2 col-6">
<div
class="team team-s2 team-sm-s2 team-odd animated"
data-animate="fadeInUp"
data-delay="0.3"
>
<a
target="_blank"
href="https://genesis.eden.eoscommunity.org/members/aaron.gm"
>
<div class="team-photo team-photo-s2">
<img src="images/chiefs/aaron.jpg" alt="" />
</div>
</a>
<h5 class="team-name title title-sm">Aaron Cox</h5>
<span class="team-position team-position-sm"
>Head Delegate</span
>
<ul class="team-social team-social-s2">
<li>
<a target="_blank" href="https://t.me/jestagram"
><em class="fab fas fa-paper-plane"></em
></a>
</li>
<li>
<a target="_blank" href="https://twitter.com/Jesta187"
><em class="fab fa-twitter"></em
></a>
</li>
</ul>
</div>
</div>
<div class="col-md-4 col-lg-2 col-6">
<div
class="team team-s2 team-sm-s2 team-even animated"
data-animate="fadeInUp"
data-delay="0.35"
>
<a
href="https://genesis.eden.eoscommunity.org/members/b.lovejoy"
target="_blank"
>
<div class="team-photo team-photo-s2">
<img src="images/chiefs/brandon.jpg" alt="" />
</div>
</a>
<h5 class="team-name title title-sm">Brandon Lovejoy</h5>
<span class="team-position team-position-sm"
>Legal Advisor, TokenWiz Project</span
>
<ul class="team-social team-social-s2">
<li>
<a target="_blank" href="https://t.me/brandonlovejoy"
><em class="fab fas fa-paper-plane"></em
></a>
</li>
<li>
<a
target="_blank"
href="https://twitter.com/brandonlovejoy"
><em class="fab fa-twitter"></em
></a>
</li>
</ul>
</div>
</div>
<div class="col-md-4 col-lg-2 col-6">
<div
class="team team-s2 team-sm-s2 team-odd animated"
data-animate="fadeInUp"
data-delay="0.4"
>
<a
href="https://genesis.eden.eoscommunity.org/members/chrisbedenos"
target="_blank"
>
<div class="team-photo team-photo-s2">
<img src="images/chiefs/chris.jpg" alt="" />
</div>
</a>
<h5 class="team-name title title-sm">Chris Barnes</h5>
<span class="team-position team-position-sm"
>Managing Director, ICOCrypto</span
>
<ul class="team-social team-social-s2">
<li>
<a target="_blank" href="https://t.me/Chrisbarnes1"
><em class="fab fas fa-paper-plane"></em
></a>
</li>
<li>
<a target="_blank" href="https://twitter.com/Barnzooor"
><em class="fab fa-twitter"></em
></a>
</li>
</ul>
</div>
</div>
<div class="col-md-4 col-lg-2 col-6">
<div
class="team team-s2 team-sm-s2 team-even animated"
data-animate="fadeInUp"
data-delay="0.45"
>
<a
href="https://genesis.eden.eoscommunity.org/members/jesse.gem"
target="_blank"
>
<div class="team-photo team-photo-s2">
<img src="images/chiefs/jesse.png" alt="" />
</div>
</a>
<h5 class="team-name title title-sm">Jesse Jaffe</h5>
<span class="team-position team-position-sm"
>Insurance Lead & Financial Advisor</span
>
<ul class="team-social team-social-s2">
<li>
<a target="_blank" href="https://t.me/jessethan"
><em class="fab fas fa-paper-plane"></em
></a>
</li>
<li>
<a target="_blank" href="https://twitter.com/jessethan3"
><em class="fab fa-twitter"></em
></a>
</li>
</ul>
</div>
</div>
<div class="col-md-4 col-lg-2 col-6">
<div
class="team team-s2 team-sm-s2 team-odd animated"
data-animate="fadeInUp"
data-delay="0.5"
>
<a href="https://genesis.eden.eoscommunity.org/members/joh.n" target="_blank">
<div class="team-photo team-photo-s2">
<img src="images/chiefs/john.jpg" alt="" />
</div>
</a>
<h5 class="team-name title title-sm">John Williamson</h5>
<span class="team-position team-position-sm"
>Ecosystem Manager & DevOps Engineer</span
>
<ul class="team-social team-social-s2">
<li>
<a target="_blank" href="https://t.me/velua"
><em class="fab fas fa-paper-plane"></em
></a>
</li>
<li>
<a target="_blank" href="https://twitter.com/velua"
><em class="fab fa-twitter"></em
></a>
</li>
</ul>
</div>
</div>
<div class="col-md-4 col-lg-2 col-6">
<div
class="team team-s2 team-sm-s2 team-even animated"
data-animate="fadeInUp"
data-delay="0.55"
>
<a href="https://genesis.eden.eoscommunity.org/members/ykkeb2wcu.gm" target="_blank">
<div class="team-photo team-photo-s2">
<img src="images/chiefs/randall.jpg" alt="" />
</div>
</a>
<h5 class="team-name title title-sm">Randall Roland</h5>
<span class="team-position team-position-sm"
>Member of the Oparation Board</span
>
<ul class="team-social team-social-s2">
<li>
<a target="_blank" href="https://t.me/Randallroland"
><em class="fab fas fa-paper-plane"></em
></a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- // -->
<section class="section" id="docs">
<div class="container">
<div class="row justify-content-center text-center">
<div class="col-lg-6">
<div class="section-head section-head-s2">
<h2
class=""
data-animate="fadeInUp"
data-delay="0.1"
title="Downloads"
>
DOCUMENTS
</h2>
<p >
More Equal Animals is a book by <a href="https://twitter.com/bytemaster7" target="_blank">Daniel Larimer</a> which outlines the failures in traditional democracy and proposes a whole new approach called "True Democracy" in order to secure life, liberty, property and justice for all.
</p>
<p class="animated" data-animate="fadeInUp" data-delay="0.2">
All proceeds are donated to Eden on EOS.
</p>
</div>
</div>
</div>
</div>