forked from tog-ETH-er/tog-eth-er.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1069 lines (1010 loc) · 54.8 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 class="no-js"> <!--<![endif]-->
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="Navigator Responsive Multipurpose Bootstrap HTML5 Template">
<meta name="author" content="Themefisher.com">
<title>Together</title>
<!-- Mobile Specific Meta
================================================== -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Favicon -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico" />
<!-- bootstrap.min css -->
<link rel="stylesheet" href="plugins/bootstrap/bootstrap.min.css">
<!-- Revo Slider CSS
================================================== -->
<!-- RS5.0 Main Stylesheet -->
<link rel="stylesheet" type="text/css" href="plugins/revo-slider/css/settings.css">
<!-- RS5.0 Layers and Navigation Styles -->
<link rel="stylesheet" type="text/css" href="plugins/revo-slider/css/layers.css">
<link rel="stylesheet" type="text/css" href="plugins/revo-slider/css/navigation.css">
<!-- REVOLUTION STYLE SHEETS -->
<link rel="stylesheet" type="text/css" href="plugins/revo-slider/fonts/pe-icon-7-stroke/css/pe-icon-7-stroke.css">
<link rel="stylesheet" type="text/css" href="plugins/revo-slider/fonts/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="plugins/revo-slider/css/settings.css">
<link rel="stylesheet" type="text/css" href="plugins/revo-slider/css/layers.css">
<link rel="stylesheet" type="text/css" href="plugins/revo-slider/css/navigation.css">
<!-- CSS
================================================== -->
<!-- Themefisher Icon font -->
<link rel="stylesheet" href="plugins/themefisher-font/style.css">
<!-- Lightbox.min css -->
<link rel="stylesheet" href="plugins/lightbox2/dist/css/lightbox.min.css">
<!-- Slick Carousel -->
<link rel="stylesheet" href="plugins/slick-carousel/slick/slick.css">
<link rel="stylesheet" href="plugins/slick-carousel/slick/slick-theme.css">
<!-- Main Stylesheet -->
<link rel="stylesheet" href="css/style.css">
</head>
<body id="body">
<!--
Start Preloader
==================================== -->
<div id="preloader">
<div class="preloader">
<div class="sk-circle1 sk-child"></div>
<div class="sk-circle2 sk-child"></div>
<div class="sk-circle3 sk-child"></div>
<div class="sk-circle4 sk-child"></div>
<div class="sk-circle5 sk-child"></div>
<div class="sk-circle6 sk-child"></div>
<div class="sk-circle7 sk-child"></div>
<div class="sk-circle8 sk-child"></div>
<div class="sk-circle9 sk-child"></div>
<div class="sk-circle10 sk-child"></div>
<div class="sk-circle11 sk-child"></div>
<div class="sk-circle12 sk-child"></div>
</div>
</div>
<!--
End Preloader
==================================== -->
<!--
Fixed Navigation
==================================== -->
<section class="header navigation fixed-top">
<div class="container">
<div class="row">
<div class="col-lg-12">
<nav class="navbar navbar-expand-lg">
<a class="navbar-brand" href="index.html">
<img src="images/togETHerlogo.png" alt="logo" style="width: 138px;height: 34px;" >
</a>
<!-- <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navigation" aria-controls="navigation"
aria-expanded="false" aria-label="Toggle navigation">
<span class="tf-ion-android-menu"></span>
</button> -->
<div class="collapse navbar-collapse" id="navigation">
<ul class="navbar-nav ml-auto">
<li class="nav-item">
<button class="lang-btn" data-lang="zh">中文</button>
<scan style="color:silver;">/</scan>
<button class="lang-btn" data-lang="en">EN</button>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div>
</section>
<!--
Welcome Slider
==================================== -->
<section class="hero-area">
<div class="container">
<div class="row">
<div class="col-lg-6 mb-4 mb-lg-0">
<div>
<!-- <img class="img-fluid rounded w-100" src="images/Ethereum-1-rmbg.jpeg" alt=""> -->
<div class="video-player">
<img class="img-fluid rounded w-100" src="images/Ethereum-1-rmbg.jpeg" alt="">
<a class="play-icon" href="javascript:void(0)">
<i class="tf-ion-play" data-video="media/togETHer.mp4"></i>
</a>
</div>
</div>
</div>
<div class="col-lg-6">
<div class="block">
<h2>togETHer</h2>
<p data-key="intro1">Where Ethereum Builders Get Together</p>
<p data-key="intro2">togETHer is an Ethereum community alliance committed to driving the ecosystem foward. We connect community resources to collaborate on Ethereum blockchain documentation, development, research and events.
</p>
<ul class="list-inline wow fadeInUp" data-wow-duration=".5s" data-wow-delay=".7s">
<li class="list-inline-item mb-3">
<a href="https://github.com/tog-ETH-er/tog-eth-er.github.io/issues" target="_blank" class="btn btn-main" data-key="connect-btn">
<img src="images/icon-github.png" style="width:30px; margin-left: -20px; margin-right:10px ;" />
CONTACT US</a>
</li>
<li class="list-inline-item">
<!-- background: none;border:1px solid #fe2a77; -->
<a href="https://calendar.google.com/calendar/u/0?cid=N2Q2NGZlNzFiZTlmNWU3Mjg5MThmMjliYjAxZTcxMDI2OTg2ZTYxN2ZmMTNmY2IwOWUyYmMyMWJhY2YxOGNjZEBncm91cC5jYWxlbmRhci5nb29nbGUuY29t" target="_blank" class="btn btn-main" data-key="connect-btn" style="margin-right: 0;padding-right: 19px;">
<img src="images/google-icon.png" style="width:30px; margin-left: -20px; margin-right:10px ;" />
ADD CALENDAR</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- Start Our Members
=========================================== -->
<section class="team section bg-gray" id="team">
<div class="container">
<div class="row">
<div class="col-12">
<div class="title text-center">
<!-- <h4>Together MEMBER</h4> -->
<h2 data-key="members">Community Members.</h2>
<span class="border"></span>
<p data-key="intromember">Together's current membership includes EThPlanet, ECN, EthFans, DAOSquare, PrimitivesLane, Hiblock, Zhixiong Pan, Rebase and BTCU.</p>
</div>
</div>
</div>
<div class="row">
<!-- team member -->
<div class="col-lg-3 col-sm-6">
<div class="team-member text-center">
<a href="https://www.ethplanet.org/">
<div class="member-photo">
<!-- member photo -->
<img class="img-fluid" style="top: 50%;" src="media/logo/ethplanet2.png" alt="team people" >
<!-- /member photo -->
</div>
<!-- member name & designation -->
<div class="member-content">
<h3>ETHPlanet</h3>
<p data-key="introETHplanet">ETHPlanet — Building a community to engage, connect, and empower builders. ETHPlanet, a planet where you can connect with all the developers, dapp founders, digital artists, investors, and other innovators in the field from around the Ethereum world.</p>
<ul class="list-inline">
<li class="list-inline-item">
<a href="https://www.facebook.com/ETHPlanet">
<i class="tf-ion-social-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/ETHPlanet">
<i class="tf-ion-social-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/ETHPlanet">
<i class="tf-ion-social-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://www.ethplanet.org/">
<i class="tf-ion-social-dribbble"></i>
</a>
</li>
</ul>
</div>
<!-- /member name & designation -->
</a>
</div>
</div>
<!-- end team member -->
<!-- team member -->
<div class="col-lg-3 col-sm-6">
<div class="team-member text-center" >
<a href="https://www.ethereum.cn/">
<div class="member-photo">
<!-- member photo -->
<img class="img-fluid" src="media/logo/ecn.jpg" alt="team people">
<!-- /member photo -->
</div>
</a>
<!-- member name & designation -->
<div class="member-content">
<h3>EthereumCN (ECN)</h3>
<p data-key="introECN">ECN as an Ethereum Community Network, is committed to facilitating the adoption of Ethereum and blockchain and further bridging the Chinese-speaking community with global Ethereum ecosystem. We’re making fundamental efforts including education, documentation, community and events.</p>
<ul class="list-inline">
<li class="list-inline-item">
<a href="https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=Mzg5ODU3NjkwNg==&scene=124#wechat_redirect">
<img style="width: 18px; padding-bottom: 5px;" src="images/wechat.png" />
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/EthereumCN">
<i class="tf-ion-social-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://discord.gg/eJJRBqKd3d">
<img style="width: 18px; padding-bottom: 5px;" src="data:image/png;base64,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"/>
</a>
</li>
<li class="list-inline-item">
<a href="https://weeth.io/">
<i class="tf-ion-social-dribbble"></i>
</a>
</li>
</ul>
</div>
<!-- /member name & designation -->
</div>
</div>
<!-- end team member -->
<!-- team member -->
<div class="col-lg-3 col-sm-6">
<div class="team-member text-center">
<a href="https://daosquare.io/">
<div class="member-photo">
<img class="img-fluid" src="media/logo/daosquare.png" alt="team people">
<!-- /member photo -->
</div>
<!-- member name & designation -->
<div class="member-content">
<h3>DAOSquare</h3>
<p data-key="introDaosquare">About DAOSquare Born in the well-known West Ethereum community MetaCartel, DAOSquare is dedicated to building a Web3 incubator which aims to be the Y·Combinator in the Web3 era. </p>
<ul class="list-inline">
<li class="list-inline-item">
<a href="https://forum.daosquare.io/">
<i class="tf-ion-document-text"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/DAOSquare ">
<i class="tf-ion-social-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://discord.com/invite/daosquare ">
<img style="width: 18px; padding-bottom: 5px;" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABmJLR0QA/wD/AP+gvaeTAAAF+klEQVRoge2ZX4xU9RXHP+c3c++MC4jtalHT2uKfKmyVmR1lt4HIEkthdhEE3Zjw0DSmVq3pQxNNow9K5MWmrX2h2qSVPjQ2RrAKuDsbQaQBi0iXWfEfxKaxLTHoxhhYWLr33vkdH3Z2dmb3zuxcRwgP832693t/55zvuff+fvf8zoUmmmiiiSYagDTqQNt63bHYyHwTiyfd/Ctv12PjpbpTVhlNBLM+kve2eo3Ej5yAtvW6Y+7oKoPeBiwBFgFxwDqBXCrv9H1e237l1303NgwYIADeRthvVfYkzImcDA765ySBsfaeBaJ6P7ABuLRIF4A3VHjdWN3lDOXeqMeXn1m11Kr5gSjLGb8JseKlYYS/qsT+kBjcefQrSUBTd1zii/cb4Mdlgd5HeNpRfUHyueGK8ZmVVwSF+Hwr9krBzAVQ7Emj5uO4o/+WQ/0nKsans5f5wt2oPAAsLNIFRLY4MvawDO4++aUTOJta9Z2YmL8DVxWpoxb5ZTLftwNAe3tjwYenO61Ij8BSoB2YNcM9OQMMqsh+Y+mLX9dyULZuLSiIl+peI8KTwA3Fsf8tqF120dDAR5ETUBA/1X0AoaNI7XbmjmZl795Av7dmnuf4PzPIPQrfnEFwTQgcR/lT3AbPyJFXP9Wurrh/ctYA43MM4B9Ovn+pgEZKYKw9e7eoPF9GDWJ4UK30CPwCdHYjwkOknFbsU2KkH6tPg7RPXFG0N5HPbQu1qubOS/e8C9r21Yr80njHzfffFHbBhJH+op7lF5B4gBv9dPetYRdCE1DR+8+tnuhQ9IEwftorpNevmeO3BJ8AF51zVdHwf8fVeXIwd6qcnPYEvFmFtVx44gGS3pisnkpOS8BYu/786IkOg941lat4hTSTcXw7bxiYe95URYEy4sQ+aS2vlyqeQFC4YgkXqngAYU6gl3eWUxUJWKMrIrocReXBoKDfwsQyAjtn1qA7MLFMEA+uQvTnwGiUgFb1h+Xn8SnOvx/Bl4ro7U6+f0/x/LjC2iCdfVmRNaHihZfjh3Pry8qCzX561QeK2V1vUEEqNJaegLLRYLm5fvXscg7n9pRzAmrhkWo2Fnl0ak3j5AdeA3bVGxf0FmVjSXfpwLvp0EKEOXX7sXoojHbzuQ9QRqbHZcQ93Bda46vqW3XHhYu9RQcWTJxMzoGY3hjBCRgSoXxXVwzBmcYLDr29oV9+EZOMFDsWK5U5ZY9CroviQ1SWaciXPBhJdgJhgpLBh6MdU8lxH7osSmyjfLd0XHKkGikB4Ba/vfunFWLaumarNU9VM1DR32lbV0UZ7qe774P65x6AQknr5CokXB3FSdHTM157T8ZidxrlMh95CFhQw2Kx77Yc9NLZ31ph2KisBe6JHldKWssTaA3f89SEoHqvQe6NYLMQ5FkTPVZZVG2dOJycVMrXGnB5XqFMai1fFWqVELsUfQI4e85UTeKsok8IuqPaAKmSwKmQsQBYZHMin3vcFmxaVF+iyga7QajA32zBphP53OOobK4xttRqKVuF+HO10TH0935qdVfyyMAxZyi3HrUdAi8CDbUFixgTeBG1HU6+/87kkYFj/qKe5QhbqhkoWtJaWse1rdf1E2cGGO+WhcECzxXUPjbRp9HF61p9z1uNYQWqS4Fv1yn6Pyj7QHY7rvuKvPXSZ1DsQ2E2IWygynYX5DXHnMhOlNRT9gO3twS28BeFWpuaQGC7Gn7tDvYfrLBv65rtuy03WORKUTtHhIsBVDmlYkYM+rHjjR6V9/aeLrfz2rOdovKQwh1Mdv+mS0e2xZMtP5IDW89OclMw3tDK/gSRX0HNlcmqsj4x1L+9xpgZMda+ep2o3UbVOw7A5yAPO/m+LVOLwWlGAuoO5f7oBHKNIpsEjldxagSi7h+mQVRXhOko4n+KbHLUvdrN9z0b1p2bubnLRhOk/nmrGt2AaifjfUsHOCOqK+vtSFeDn8ouUZFXgRbGF4VjiLwpap+L5zv2CRttLfvo/wcyGcfTy6914+6nE5OvUejida1e4H3DlRP/ivp/oIkmmmiiiYbwBQY0NPjN0E5QAAAAAElFTkSuQmCC"/>
</a>
</li>
<li class="list-inline-item">
<a href="https://dao2.io">
<i class="tf-ion-android-compass"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://incubator.daosquare.io/">
<i class="tf-ion-android-home"></i>
</a>
</li>
</ul>
</div>
<!-- /member name & designation -->
</a>
</div>
</div>
<!-- end team member -->
<!-- team member -->
<div class="col-lg-3 col-sm-6">
<div class="team-member text-center">
<a href="https://ethfans.org/"></a>
<div class="member-photo">
<!-- member photo -->
<img class="img-fluid" style="top: 30%;" src="media/logo/ethfans.jpeg" alt="team people">
<!-- /member photo -->
</div>
<!-- member name & designation -->
<div class="member-content">
<h3>EthFans</h3>
<p data-key="introEthfans">We focus on building the best Chinese Ethereum Community. We welcome collaborations from communities, projects around the world.</p>
<ul class="list-inline">
<li class="list-inline-item">
<a href="https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=Mzg5ODU3NjkwNg==&scene=124#wechat_redirect">
<img style="width: 18px; padding-bottom: 5px;" src="images/wechat.png" />
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/ethfans">
<i class="tf-ion-social-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/EthFans">
<i class="tf-ion-social-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://ethfans.org/">
<i class="tf-ion-social-dribbble"></i>
</a>
</li>
</ul>
</div>
<!-- /member name & designation -->
</a>
</div>
</div>
<!-- end team member -->
<!-- team member -->
<div class="col-lg-3 col-sm-6">
<div class="team-member text-center">
<a href="https://www.primitiveslane.org/">
<div class="member-photo">
<!-- member photo -->
<img class="img-fluid" src="media/logo/yuanyulilong.png" alt="team people">
<!-- /member photo -->
</div>
<!-- member name & designation -->
<div class="member-content">
<h3 data-key="primitiveslane">Primitives Lane </h3>
<p style="font-size: 12px;" data-key="introprimitiveslane">Primitives Lane (formerly known as Shanghai Advanced Tech Seminar) is a non-profit community focusing on cutting-edge technology, dedicated to exploring the development path of underlying technologies and researching fundamental public issues. By providing a public technology discussion platform for the industry through offline seminars and subject research, it promotes in-depth communication within the industry and enhances the influence of the industry in society. Currently, Primitives Lane focuses on blockchain, cryptography and other related areas. </p>
<ul class="list-inline">
<li class="list-inline-item">
<a href="mailto:[email protected]"><i class="tf-ion-email"></i></a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="tf-ion-social-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/orgs/PrimitivesLane">
<i class="tf-ion-social-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://primitiveslane.org/">
<i class="tf-ion-social-dribbble"></i>
</a>
</li>
</ul>
</div>
<!-- /member name & designation -->
</a>
</div>
</div>
<!-- end team member -->
<!-- team member -->
<div class="col-lg-3 col-sm-6">
<div class="team-member text-center">
<a href="https://www.hiblock.one/">
<div class="member-photo">
<!-- member photo -->
<img class="img-fluid" src="media/logo/hiblock.png" alt="team people">
<!-- /member photo -->
</div>
<!-- member name & designation -->
<div class="member-content">
<h3>HiBlock</h3>
<p data-key="introHiblock" style="font-size: 12px;">HiBlock is a developer community focused on blockchain, we not only promote blockchain among developers, but also help developers really master blockchain technology and applications.</p>
<ul class="list-inline">
<li class="list-inline-item">
<a href="https://t.me/bobjiang123">
<img src="images/telegram-xxl.png" style="width: 14px; margin-bottom: 5px"/>
</a>
</li>
<li class="list-inline-item">
<a href="https://twitter.com/HiBlock_Net">
<i class="tf-ion-social-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/HiBlock">
<i class="tf-ion-social-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://medium.com/hiblock">
<img src="images/medium.png" style="width: 15px; margin-bottom: 3px;"/>
</a>
</li>
<li class="list-inline-item">
<a href="mailto:[email protected]"><i class="tf-ion-email"></i></a>
</li>
</ul>
</div>
<!-- /member name & designation -->
</a>
</div>
</div>
<!-- end team member -->
<!-- team member -->
<div class="col-lg-3 col-sm-6">
<div class="team-member text-center">
<a href="https://rebase.network">
<div class="member-photo">
<!-- member photo -->
<img class="img-fluid" src="media/logo/rebase.jpg" alt="team people">
<!-- /member photo -->
</div>
<!-- member name & designation -->
<div class="member-content">
<h3>Rebase</h3>
<p style="font-size: 12px;">
<a data-key="introRebase" title="Rebase community is committed to helping geeks make better use of technological innovation and promote social change.Rebase community project introduction:
1. Web3 Daily: Daily reading for geeks. A Web3 related technical article is published every day, and each article includes three recommendations. The recommended content comes from the members of the Web3 Daily Think Tank, and the content is collected, sorted out and published by community volunteers.
2. Rebase University: A place where geeks self-organized learning, advocating learning and sharing. Committed to building an open knowledge society.
3. Rostra: Inspired by Rebase University, Rostra is committed to changing the way people learn, research and share. Researchers publish research plans and raise funds from the society to fund their own research. The benefits of research results can benefit funders.
4. Dapp Learning: The project vision is to give junior developers an executable and simplest blockchain Dapp learning roadmap, and to give advanced developers a platform for communication and collaboration. The project is deeply integrated with Rebase University. A study group is set up to divide tasks and then study mainstream dapp projects together. Technology sharing is carried out every week. The sharing videos will be uploaded to the Rebase account at Bilibili.
5. Who is hiring: In order to facilitate the team's recruitment of developers, we setup a repo on github for freely publishing work requirements.
6. Rebase D. Ventures: Rebase D. Ventures is a community venture capital fund originating from the Rebase community. It uses funds from the community to realize the vision of helping and accomplishing blockchain technology teams and projects." >
Rebase community is committed to helping geeks make better use of technological innovation and promote social change.
Rebase community project introduction:
1. Web3 Daily: Daily reading for geeks. A Web3 related technical article is published every day, and each article includes three recommendations. The recommended content comes from the members of the Web3 Daily Think Tank, and the content is collected, sorted out and published by community volunteers.
2. Rebase University: A place where geeks self-organized learning, advocating learning and sharing. Committed to building an open knowledge society.
3. ...
</a>
</p>
<ul class="list-inline">
<li class="list-inline-item">
<a href="https://mp.weixin.qq.com/mp/profile_ext?action=home&__biz=MzU0ODk1MTE1MA==&scene=124#wechat_redirect">
<img style="width: 18px; padding-bottom: 5px;" src="images/wechat.png" />
</a>
</li>
<li class="list-inline-item">
<a href="https://space.bilibili.com/382886213 ">
<i class="tf-ion-ios-videocam"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/rebase-network ">
<i class="tf-ion-social-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://rebase.network" title="联系方式: 关注 rebase 公众号并留言">
<i class="tf-ion-social-dribbble"></i>
</a>
</li>
</ul>
</div>
<!-- /member name & designation -->
</a>
</div>
</div>
<!-- end team member -->
<!-- team member -->
<div class="col-lg-3 col-sm-6">
<div class="team-member text-center">
<div class="member-photo">
<!-- member photo -->
<img class="img-fluid" src="media/logo/btcu.png" alt="team people">
<!-- /member photo -->
</div>
<!-- member name & designation -->
<div class="member-content">
<h3>BTCU</h3>
<p style="font-size: 12px;">
<a data-key="introBTCU" title="The Blockchain Technology Community of Universities is composed of students from Tsinghua University, Peking University, Zhejiang University, Shanghai Jiaotong University, Fudan University, Renmin University of China, Central University of Finance and Economics, Wuhan University, Huazhong University of Science and Technology, Sichuan University, etc. The heads of the Blockchain Association of 20 Chinese universities jointly initiated the establishment of a cooperative community for blockchain technology learning, education and industrial communications among universities. It is a non-profit, unofficial, unincorporated, and spontaneous community.">
The Blockchain Technology Community of Universities is composed of students from Tsinghua University, Peking University, Zhejiang University, Shanghai Jiaotong University, Fudan University, Renmin University of China, Central University of Finance and Economics, Wuhan University, Huazhong University of Science and Technology, Sichuan University, etc. The heads of the Blockchain Association of 20 Chinese universities jointly initiated the establishment of a cooperative community for blockchain technology learning, education and industrial communications among universities....
</a></p>
<ul class="list-inline">
<li class="list-inline-item">
<a href="#">
<i class="tf-ion-social-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://space.bilibili.com/477534964">
<i class="tf-ion-ios-videocam"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/btcu-pro"/>
<i class="tf-ion-social-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="mailto:[email protected]"><i class="tf-ion-email"></i></a>
</li>
</ul>
</div>
<!-- /member name & designation -->
</div>
</div>
<!-- end team member -->
<!-- team member -->
<div class="col-lg-3 col-sm-6">
<div class="team-member text-center">
<div class="member-photo">
<!-- member photo -->
<img class="img-fluid" src="media/logo/ethlibrary.png" alt="team people">
<!-- /member photo -->
</div>
<!-- member name & designation -->
<div class="member-content">
<h3>Ethlibrary</h3>
<p style="font-size: 12px;">
<a data-key="introEthlibrary" >
Ethereum Translation Community CN is a community devoted to translating and making Ethereum related knowledge access to everyone in China. As part of the Ethereum community, we are cooperating with ETH lovers and providing the most understandable materials to the general public. Some of the work we've delivered: ethereum.org CN (finished), EIPs CN (on going).
</a></p>
<ul class="list-inline">
<li class="list-inline-item">
<a href="https://ethlibrary.io/">
<i class="tf-ion-social-dribbble"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://github.com/ethlibrary"/>
<i class="tf-ion-social-github"></i>
</a>
</li>
<li class="list-inline-item">
<a href="mailto:[email protected]"><i class="tf-ion-email"></i></a>
</li>
</ul>
</div>
<!-- /member name & designation -->
</div>
</div>
<!-- end team member -->
<!-- team member -->
<div class="col-lg-3 col-sm-6">
<div class="team-member text-center">
<a href="https://linktr.ee/dapplearning">
<div class="member-photo">
<!-- member photo -->
<img class="img-fluid" src="media/logo/dapplearning.png" alt="team people">
<!-- /member photo -->
</div>
</a>
<!-- member name & designation -->
<div class="member-content">
<h3>Dapp-Learning</h3>
<p style="font-size: 12px;">
<a data-key="introdapplearning" title="Dapp-Learing Project is suitable for developers with certain programming language foundation to start blockchain Dapp development. It allows developers to understand and develop various projects like Defi, NFT, DAO and CRYPTO from a lower level to the higher level step by step.
The vision of the project is not only to provide junior developers an executable and simple learning roadmap for blockchain Dapp development, but to give advanced developers a platform to communicate and collaborate.">
Dapp-Learing Project is suitable for developers with certain programming language foundation to start blockchain Dapp development. It allows developers to understand and develop various projects like Defi, NFT, DAO and CRYPTO from a lower level to the higher level step by step.
The vision of the project is not only to provide junior developers an executable and simple learning roadmap for blockchain Dapp development, but to give advanced developers a platform to communicate and collaborate.
</a></p>
<ul class="list-inline">
<li class="list-inline-item" style="margin-left: 0px;">
<a href="https://twitter.com/Dapp_Learning">
<i class="tf-ion-social-twitter"></i>
</a>
</li>
<li class="list-inline-item" style="margin-left: -5px;">
<a href="https://space.bilibili.com/382886213">
<i class="tf-ion-ios-videocam"></i>
</a>
</li>
<li class="list-inline-item" style="margin-left: -5px;">
<a href="https://www.youtube.com/channel/UCdJKZVxO55N3n2BQYXMDAcQ">
<i class="tf-ion-social-youtube-outline"></i>
</a>
</li>
<li class="list-inline-item" style="margin-left: -5px;">
<a href="https://discord.gg/cRYNYXqPeR">
<img style="width: 18px; padding-bottom: 5px;" src="data:image/png;base64,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"/>
</a>
</li>
<li class="list-inline-item" style="margin-left: -5px;">
<a href="https://github.com/rebase-network/Dapp-Learning"/>
<i class="tf-ion-social-github"></i>
</a>
</li>
<li class="list-inline-item" style="margin-left: -10px;">
<a href="https://dapp-learning.notion.site/Dapp-Learning-Homepage-79545c9d4ffe4e77a8cbc1c55e77b551"><img style="width: 16px; margin-top: -3px;" src="images/notion.png"></a>
</li>
</ul>
</div>
<!-- /member name & designation -->
</div>
</div>
<!-- end team member -->
<!-- team member -->
<div class="col-lg-3 col-sm-6">
<div class="team-member text-center" >
<div class="member-photo" style="padding-top: 30px;padding-left: 25px; padding-right: 25px;">
<!-- member photo -->
<img class="img-fluid" src="media/logo/plancker.png" alt="team people">
<!-- /member photo -->
</div>
<!-- member name & designation -->
<div class="member-content">
<h3>PlanckerDAO</h3>
<p style="font-size: 12px;">
<a data-key="planckerDAO" title="PlanckerDAO is a group of Engineers, Researchers, and PMs from Asia who long to build the Ethereum eco in Great China.">
PlanckerDAO is a group of Engineers, Researchers, and PMs from Asia who long to build the Ethereum eco in Great China.
</a></p>
<ul class="list-inline">
<li class="list-inline-item" style="margin-left: 0px;">
<a href="https://twitter.com/PlanckerDao">
<i class="tf-ion-social-twitter"></i>
</a>
</li>
<li class="list-inline-item" style="margin-left: -5px;">
<a href="https://discord.com/invite/v59KDSgqFu">
<img style="width: 18px; padding-bottom: 5px;" src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAABmJLR0QA/wD/AP+gvaeTAAAF+klEQVRoge2ZX4xU9RXHP+c3c++MC4jtalHT2uKfKmyVmR1lt4HIEkthdhEE3Zjw0DSmVq3pQxNNow9K5MWmrX2h2qSVPjQ2RrAKuDsbQaQBi0iXWfEfxKaxLTHoxhhYWLr33vkdH3Z2dmb3zuxcRwgP832693t/55zvuff+fvf8zoUmmmiiiSYagDTqQNt63bHYyHwTiyfd/Ctv12PjpbpTVhlNBLM+kve2eo3Ej5yAtvW6Y+7oKoPeBiwBFgFxwDqBXCrv9H1e237l1303NgwYIADeRthvVfYkzImcDA765ySBsfaeBaJ6P7ABuLRIF4A3VHjdWN3lDOXeqMeXn1m11Kr5gSjLGb8JseKlYYS/qsT+kBjcefQrSUBTd1zii/cb4Mdlgd5HeNpRfUHyueGK8ZmVVwSF+Hwr9krBzAVQ7Emj5uO4o/+WQ/0nKsans5f5wt2oPAAsLNIFRLY4MvawDO4++aUTOJta9Z2YmL8DVxWpoxb5ZTLftwNAe3tjwYenO61Ij8BSoB2YNcM9OQMMqsh+Y+mLX9dyULZuLSiIl+peI8KTwA3Fsf8tqF120dDAR5ETUBA/1X0AoaNI7XbmjmZl795Av7dmnuf4PzPIPQrfnEFwTQgcR/lT3AbPyJFXP9Wurrh/ctYA43MM4B9Ovn+pgEZKYKw9e7eoPF9GDWJ4UK30CPwCdHYjwkOknFbsU2KkH6tPg7RPXFG0N5HPbQu1qubOS/e8C9r21Yr80njHzfffFHbBhJH+op7lF5B4gBv9dPetYRdCE1DR+8+tnuhQ9IEwftorpNevmeO3BJ8AF51zVdHwf8fVeXIwd6qcnPYEvFmFtVx44gGS3pisnkpOS8BYu/786IkOg941lat4hTSTcXw7bxiYe95URYEy4sQ+aS2vlyqeQFC4YgkXqngAYU6gl3eWUxUJWKMrIrocReXBoKDfwsQyAjtn1qA7MLFMEA+uQvTnwGiUgFb1h+Xn8SnOvx/Bl4ro7U6+f0/x/LjC2iCdfVmRNaHihZfjh3Pry8qCzX561QeK2V1vUEEqNJaegLLRYLm5fvXscg7n9pRzAmrhkWo2Fnl0ak3j5AdeA3bVGxf0FmVjSXfpwLvp0EKEOXX7sXoojHbzuQ9QRqbHZcQ93Bda46vqW3XHhYu9RQcWTJxMzoGY3hjBCRgSoXxXVwzBmcYLDr29oV9+EZOMFDsWK5U5ZY9CroviQ1SWaciXPBhJdgJhgpLBh6MdU8lxH7osSmyjfLd0XHKkGikB4Ba/vfunFWLaumarNU9VM1DR32lbV0UZ7qe774P65x6AQknr5CokXB3FSdHTM157T8ZidxrlMh95CFhQw2Kx77Yc9NLZ31ph2KisBe6JHldKWssTaA3f89SEoHqvQe6NYLMQ5FkTPVZZVG2dOJycVMrXGnB5XqFMai1fFWqVELsUfQI4e85UTeKsok8IuqPaAKmSwKmQsQBYZHMin3vcFmxaVF+iyga7QajA32zBphP53OOobK4xttRqKVuF+HO10TH0935qdVfyyMAxZyi3HrUdAi8CDbUFixgTeBG1HU6+/87kkYFj/qKe5QhbqhkoWtJaWse1rdf1E2cGGO+WhcECzxXUPjbRp9HF61p9z1uNYQWqS4Fv1yn6Pyj7QHY7rvuKvPXSZ1DsQ2E2IWygynYX5DXHnMhOlNRT9gO3twS28BeFWpuaQGC7Gn7tDvYfrLBv65rtuy03WORKUTtHhIsBVDmlYkYM+rHjjR6V9/aeLrfz2rOdovKQwh1Mdv+mS0e2xZMtP5IDW89OclMw3tDK/gSRX0HNlcmqsj4x1L+9xpgZMda+ep2o3UbVOw7A5yAPO/m+LVOLwWlGAuoO5f7oBHKNIpsEjldxagSi7h+mQVRXhOko4n+KbHLUvdrN9z0b1p2bubnLRhOk/nmrGt2AaifjfUsHOCOqK+vtSFeDn8ouUZFXgRbGF4VjiLwpap+L5zv2CRttLfvo/wcyGcfTy6914+6nE5OvUejida1e4H3DlRP/ivp/oIkmmmiiiYbwBQY0NPjN0E5QAAAAAElFTkSuQmCC"/>
</a>
</li>
<li class="list-inline-item" style="margin-left: -5px;">
<a href="https://t.me/planckeropencommunity">
<img src="images/telegram-xxl.png" style="width: 14px; margin-bottom: 5px"/>
</a>
</li>
<li class="list-inline-item" style="margin-left: -10px;">
<a href="https://plancker.notion.site/"><img style="width: 16px; margin-top: -3px;" src="images/notion.png"></a>
</li>
<li class="list-inline-item" style="margin-left: -10px;">
<a href="https://mirror.xyz/plancker.eth">
<i class="tf-ion-android-home"></i>
</a>
</li>
</ul>
</div>
<!-- /member name & designation -->
</div>
</div>
<!-- end team member -->
<!-- team member -->
<div class="col-lg-3 col-sm-6">
<div class="team-member text-center" >
<div class="member-photo" style="padding-top: 30px;padding-left: 25px; padding-right: 25px;">
<!-- member photo -->
<img class="img-fluid" src="media/logo/ctn.png" alt="Crypto Tech Night logo" style="top: 50%; -ms-transform: translateY(-50%); transform: translateY(-50%);">
<!-- /member photo -->
</div>
<!-- member name & designation -->
<div class="member-content">
<h3>Crypto Tech Night</h3>
<p style="font-size: 12px;">
<a data-key="CTN" title="Crypto Tech Night (CTN) is a community devoted to making the technology behind web3 accessible to everyone. We organize monthly tech sharing meetups, Twitter Spaces, and other events that bring developers and non-tech people together. Originally started in Shanghai in January 2021, CTN has now organized 20 tech sharing events and numerous other side events.">
Crypto Tech Night (CTN) is a community devoted to making the technology behind web3 accessible to everyone. We organize monthly tech sharing meetups, Twitter Spaces, and other events that bring developers and non-tech people together. Originally started in Shanghai in January 2021, CTN has now organized 20 tech sharing events and numerous other side events.
</a></p>
<ul class="list-inline">
<li class="list-inline-item" style="margin-left: 0px;">
<a href="https://twitter.com/CryptoTechNight">
<i class="tf-ion-social-twitter"></i>
</a>
</li>
<li class="list-inline-item" style="margin-left: -10px;">
<a href="https://space.bilibili.com/1560365248">
<i class="tf-ion-social-youtube-outline"></i>
</a>
</li>
<li class="list-inline-item" style="margin-left: -10px;">
<a href="https://dayum.notion.site/Crypto-Tech-Night-b9132f4b71f3418c87329f831205cf5a">
<img style="width: 16px; margin-top: -3px;" src="images/notion.png">
</a>
</li>
</ul>
</div>
<!-- /member name & designation -->
</div>
</div>
<!-- end team member -->
</div>
<!-- End row -->
</div>
<!-- End container -->
</section>
<!-- End section -->
<section class="team section bg-gray" id="team" style="margin-top: -160px;">
<div class="container">
<div class="row">
<div class="col-12">
<div class="title text-center">
<!-- <h4>Together MEMBER</h4> -->
<h2 data-key="expert">Expert Members.</h2>
<span class="border"></span>
<!-- <p data-key="intromember">Together's current membership includes EThPlanet, ECN, EthFans, DAOSquare, PrimitivesLane, Hiblock, Zhixiong Pan, Rebase and BTCU.</p> -->
</div>
</div>
</div>
<div class="col-lg-3 col-sm-6">
<div class="team-member text-center" style="height: auto;">
<div class="member-photo" style="height: 400px;">
<!-- member photo -->
<img class="img-fluid" src="media/logo/pan.jpeg" alt="team people">
<!-- /member photo -->
</div>
<!-- member name & designation -->
<div class="member-content">
<h3 data-key="Pan">Zhixiong Pan</h3>
<p style="height:auto;" data-key="introPan" >ChainNews | Director of Research
Observer of Ethereum/Layer2/Web3/DeFi.
</p>
<ul class="list-inline">
<!-- <li class="list-inline-item">
<a href="#">
<i class="tf-ion-social-facebook"></i>
</a>
</li> -->
<li class="list-inline-item">
<a href=" https://twitter.com/nake13">
<i class="tf-ion-social-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="https://mirror.xyz/xiaopan.eth/2sey52ry_9uA8Xt8UKS8YNmtKnLN_-vl6Ae6yz5qnxo">
<i class="tf-ion-android-home"></i>
</a>
</li>
</ul>
</div>
<!-- /member name & designation -->
</div>
</div>
<!-- end team member -->
</div>
<!-- End row -->
</div>
<!-- End container -->
</section>
<!-- End section -->
<!-- Start Portfolio Section
=========================================== -->
<section class="portfolio section" id="portfolio">
<div class="container-fluid">
<div class="row">
<div class="col-12">
<div class="title text-center">
<h2 data-key="events">Events</h2>
<span class="border"></span>
<p data-key="introevents">Highlight moments of togETHer</p>
</div>
</div>
</div>
<div class="row" >
<div class="col-lg-12">
<!-- /section title -->
<div class="portfolio-filter">
<button class="active" type="button" data-filter="Hangzhou" data-key="Hangzhou">Hangzhou</button>
<button type="button" data-filter="Guangzhou" data-key="Guangzhou">Guangzhou</button>
<button type="button" data-filter="Shengzhen" data-key="Shengzhen">Shengzhen</button>
<button type="button" data-filter="Xiamen" data-key="Xiamen">Xiamen</button>
<button type="button" data-filter="Chengdu" data-key="Chengdu">Chengdu</button>
</div>
</div>
</div> <!-- /end col-lg-12 -->
<div class="row filtr-container">
<div class="col-md-4 col-sm-6 p-0 filtr-item" data-category="Hangzhou">
<div class="portfolio-block">
<img class="img-fluid" src="media/2021 Hangzhou/600_496168063.jpeg" alt="">
<div class="caption">
<a class="search-icon" style=" margin-left: 350px;" href="images/portfolio/portfolio-1.jpg" data-lightbox="image-1">
<i class="tf-ion-ios-search-strong" ></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 p-0 filtr-item" data-category="Hangzhou">
<div class="portfolio-block ">
<img class="img-fluid" src="media/2021 Hangzhou/600_496168064.jpeg" alt="">
<div class="caption">
<a class="search-icon"style=" margin-left: 350px;" href="media/2021 Hangzhou/600_496168064.jpeg" data-lightbox="image-1">
<i class="tf-ion-ios-search-strong"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 p-0 filtr-item" data-category="Hangzhou">
<div class="portfolio-block">
<img class="img-fluid" src="media/2021 Hangzhou/600_496168066.jpeg" alt="">
<div class="caption">
<a class="search-icon" style=" margin-left: 350px;" href="media/2021 Hangzhou/600_496168066.jpeg" data-lightbox="image-1">
<i class="tf-ion-ios-search-strong"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 p-0 filtr-item" data-category="Guangzhou">
<div class="portfolio-block">
<img class="img-fluid" src="media/2021 Guangzhou/202111081514582.jpg" alt="">
<div class="caption">
<a class="search-icon" style=" margin-left: 350px;" href="media/2021 Guangzhou/202111081514582.jpg" data-lightbox="image-1">
<i class="tf-ion-ios-search-strong"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 p-0 filtr-item" data-category="Guangzhou">
<div class="portfolio-block">
<img class="img-fluid" src="media/2021 Guangzhou/20211108152013.jpg" alt="">
<div class="caption">
<a class="search-icon" style=" margin-left: 350px;" href="media/2021 Guangzhou/20211108152013.jpg" data-lightbox="image-1">
<i class="tf-ion-ios-search-strong"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 p-0 filtr-item" data-category="Guangzhou">
<div class="portfolio-block">
<img class="img-fluid" src="media/2021 Guangzhou/20211108152040.jpg" alt="">
<div class="caption">
<a class="search-icon" style=" margin-left: 350px;" href="media/2021 Guangzhou/20211108152040.jpg" data-lightbox="image-1">
<i class="tf-ion-ios-search-strong"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 p-0 filtr-item" data-category="Guangzhou">
<div class="portfolio-block">
<img class="img-fluid" src="media/2021 Guangzhou/600_495364467.jpeg" alt="">
<div class="caption">
<a class="search-icon" style=" margin-left: 350px;" href="media/2021 Guangzhou/600_495364467.jpg" data-lightbox="image-1">
<i class="tf-ion-ios-search-strong"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 p-0 filtr-item" data-category="Guangzhou">
<div class="portfolio-block">
<img class="img-fluid" src="media/2021 Guangzhou/highres_495364465.jpeg" alt="">
<div class="caption">
<a class="search-icon" style=" margin-left: 350px;" href="media/2021 Guangzhou/highres_495364465.jpg" data-lightbox="image-1">
<i class="tf-ion-ios-search-strong"></i>
</a>
</div>
</div>
</div>
<!-- <div class="col-md-4 col-sm-6 p-0 filtr-item" data-category="Shengzhen">
<div class="portfolio-block">
<img class="img-fluid" src="media/" alt="">
<div class="caption">
<a class="search-icon" href="images/portfolio/portfolio-1.jpg" data-lightbox="image-1">
<i class="tf-ion-ios-search-strong"></i>
</a>
<h4><a href="">AirBnB Postcard</a></h4>
</div>
</div>
</div> -->
<div class="col-md-4 col-sm-6 p-0 filtr-item" data-category="Xiamen">
<div class="portfolio-block">
<img class="img-fluid" src="media/2021 Xiamen/20211108153457.jpg" alt="">
<div class="caption">
<a class="search-icon" href="images/portfolio/20211108153457.jpg" data-lightbox="image-1">
<i class="tf-ion-ios-search-strong"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 p-0 filtr-item" data-category="Xiamen">
<div class="portfolio-block">
<img class="img-fluid" src="media/2021 Xiamen/20211108153510.jpg" alt="">
<div class="caption">
<a class="search-icon" href="images/portfolio/20211108153510.jpg" data-lightbox="image-1">
<i class="tf-ion-ios-search-strong"></i>
</a>
</div>
</div>
</div>
<div class="col-md-4 col-sm-6 p-0 filtr-item" data-category="Xiamen">
<div class="portfolio-block">
<img class="img-fluid" src="media/2021 Xiamen/20211108153523.jpg" alt="">
<div class="caption">
<a class="search-icon" href="images/portfolio/20211108153523.jpg" data-lightbox="image-1">
<i class="tf-ion-ios-search-strong"></i>
</a>
</div>
</div>
</div>
<!-- <div class="col-md-4 col-sm-6 p-0 filtr-item" data-category="Chengdu">
<div class="portfolio-block">
<img class="img-fluid" src="media/2021 Chengdu/" alt="">
<div class="caption">
<a class="search-icon" href="images/portfolio/20211108153523.jpg" data-lightbox="image-1">
<i class="tf-ion-ios-search-strong"></i>
</a>
</div>
</div>
</div> -->
</div>
</div> <!-- end row -->
</section> <!-- End section -->
<!-- Srart Contact Us
=========================================== -->
<section class="contact-us section" id="contact" style="background-color: #F9F9F9; height:auto;">
<div class="container">
<div class="row">
<div class="col-12">
<div class="title text-center">
<h2 style="font-family: Roboto;
font-style: normal;font-weight:bold;" data-key="join">Join Us</h2>
<span class="border"></span>
<p style="font-family: Roboto;
font-style: normal;
font-weight: bold;" data-key="how2join">HOW TO BECOME ONE OF US</p>
</div>
</div>
</div>
<div class="block text-center joinus">
<div class="joinuscontent" >
<p style=" font-weight: 400;" data-key="introJoin">Ethereum contributors (community/individuals) are embraced by togETHer.</p>
<br/>
<br/>
<p style=" font-weight: 400;" data-key="wanna0"> Wanna join us?</p>
<p style="font-family: Roboto; font-weight:bolder;" > <scan data-key="submit0">Submit your proposal by Github</scan> <a style="font-family: Roboto; font-weight:bolder;text-decoration:underline" href="https://github.com/tog-ETH-er/tog-eth-er.github.io/issues" >issue</a>!</p>
</div>
</div> <!-- end row -->
</div> <!-- end container -->
</section> <!-- end section -->
<footer id="footer" class="bg-one text-center" style="background-color: #1B1B1B; height: 79px; font: small; color: #858585;">
<div class="footer-bottom">
<h5>COPYRIGHT 2021. ALL RIGHTS RESERVED.</h5>
<h6>DESIGNED AND DEVELOPED BY <a href="https://demo.themefisher.com/navigator/">HUGO </a></h6>
</div>
</footer>
<!--
Essential Scripts
=====================================-->
<!-- Main jQuery -->
<script src="plugins/jquery/jquery.min.js"></script>
<!-- Bootstrap 4 -->
<script src="plugins/bootstrap/bootstrap.min.js"></script>
<!-- Parallax -->
<script src="plugins/parallax/jquery.parallax-1.1.3.js"></script>
<!-- lightbox -->
<script src="plugins/lightbox2/dist/js/lightbox.min.js"></script>
<!-- Owl Carousel -->
<script src="plugins/slick-carousel/slick/slick.min.js"></script>
<!-- Portfolio Filtering -->
<script src="plugins/filterzr/jquery.filterizr.min.js"></script>
<!-- Smooth Scroll js -->
<script src="plugins/smooth-scroll/dist/js/smooth-scroll.min.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBI14J_PNWVd-m0gnUBkjmhoQyNyd7nllA"></script>
<!-- Form Validation -->
<script src="plugins/form-validation/jquery.form.js"></script>
<script src="plugins/form-validation/jquery.validate.min.js"></script>
<!-- Custom js -->
<script type="text/javascript" src="plugins/revo-slider/js/jquery.themepunch.tools.min.js"></script>
<script type="text/javascript" src="plugins/revo-slider/js/jquery.themepunch.revolution.min.js"></script>
<script src="js/script.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="language.js"></script>
<!-- SLIDER REVOLUTION 5.0 EXTENSIONS