-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
950 lines (937 loc) · 52.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
<!DOCTYPE html>
<html lang="en">
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<head>
<!-- Required meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;700;900&display=swap" rel="stylesheet">
<link rel='stylesheet' href='css/owl.carousel.min.css'>
<link rel='stylesheet' href='css/font-awesome.min.css'>
<!-- Stylesheets -->
<link rel="stylesheet" href="css/vendors.css">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="styles/index.css">
<link rel="stylesheet" href="css/carousel.css" />
<!-- Favicon -->
<link rel="shortcut icon" href="img/general/favicon.ico" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/prefixfree/1.0.7/prefixfree.min.js"></script>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-8GP2TER036"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-8GP2TER036');
</script>
<title>Ethereum Cat Herders</title>
</head>
<body class="preloader-visible" data-barba="wrapper">
<!-- preloader start -->
<div class="preloader js-preloader">
<div class="preloader__bg"></div>
<div class="preloader__progress">
<div class="preloader__progress__inner"></div>
</div>
</div>
<!-- preloader end -->
<!-- cursor start -->
<div class="cursor js-cursor">
<div class="cursor__wrapper">
<div class="cursor__follower js-follower"></div>
<div class="cursor__label js-label"></div>
<div class="cursor__icon js-icon"></div>
</div>
</div>
<!-- cursor end -->
<!-- barba container start -->
<div class="barba-container" data-barba="container">
<!-- to-top-button start -->
<!-- to-top-button end -->
<main class="">
<!-- header start -->
<header class="header -light -sticky-light js-header ">
<!-- header__bar start -->
<div class="header__bar">
<div class="overflow-hidden">
<div class="header__logo js-header-logo">
<a href="home">
<img class="header__logo__light" src="img/logo/logo-dark.svg" alt="logo">
</a>
<a href="home">
<img class="header__logo__dark" src="img/logo/logo-dark.svg" alt="logo">
</a>
</div>
</div>
<div class="navClassic-wrap js-header-menu-classic">
<ul class="navClassic-list js-navClassic-list">
<li>
<a class="active" style="color:black;" data-barba href="home">
Home
</a>
</li>
<li class="menu-item-has-children">
<a href="network_upgrades">
Activities
<span>
<svg style="width: 18px;" aria-hidden="true" focusable="false" data-prefix="fas"
data-icon="chevron-down" class="svg-inline--fa fa-chevron-down fa-w-14" role="img"
xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512">
<path fill="currentColor"
d="M207.029 381.476L12.686 187.132c-9.373-9.373-9.373-24.569 0-33.941l22.667-22.667c9.357-9.357 24.522-9.375 33.901-.04L224 284.505l154.745-154.021c9.379-9.335 24.544-9.317 33.901.04l22.667 22.667c9.373 9.373 9.373 24.569 0 33.941L240.971 381.476c-9.373 9.372-24.569 9.372-33.942 0z">
</path>
</svg>
</span>
</a>
<ul class="subnav-list">
<li>
<a href="network_upgrades">Network Upgrades</a>
</li>
<li>
<a href="eip">EIP Resources</a>
</li>
<li>
<a href="dev_meetings">Meetings</a>
</li>
<li>
<a href="podcast">Podcasts</a>
</li>
<li>
<a href="surveys">Surveys</a>
</li>
</ul>
</li>
<li>
<a href="calendar">
Calendar
</a>
</li>
<li>
<a href="blog">
Blog
</a>
</li>
<li>
<a href="ech_youtube">
ECH Youtube
</a>
</li>
<li>
<a href="about">
About Us
</a>
</li>
</ul>
</div>
<div class="header__menu__wrap overflow-hidden">
<div class="header__menu js-header-menu">
<button type="button" class="nav-button-open js-nav-open">
<i class="icon" data-feather="menu"></i>
</button>
</div>
</div>
</div>
<!-- header__bar end -->
<!-- nav start -->
<nav class="nav js-nav">
<div class="nav__inner js-nav-inner">
<div class="nav__bg js-nav-bg">
<div class="🐱">
<div class="🐱b"></div>
<div class="🐱h">
<div class="🐱n"></div>
<div class="🐱e 🐱e--r"></div>
<div class="🐱e 🐱e--l"></div>
<div class="🐱s">
<div class="🐱s__i"></div>
<div class="🐱s__i"></div>
<div class="🐱s__i"></div>
</div>
<div class="🐱s 🐱s--r">
<div class="🐱s__i"></div>
<div class="🐱s__i"></div>
<div class="🐱s__i"></div>
</div>
<div class="🐱ea 🐱ea--r"></div>
<div class="🐱ea 🐱ea--l"></div>
</div>
</div>
</div>
<div class="nav__container">
<div class="nav__header">
<button type="button" class="nav-button-back js-nav-back">
<i class="icon" data-feather="arrow-left-circle"></i>
</button>
<button type="button" class="nav-btn-close js-nav-close pointer-events-none">
<i class="icon" data-feather="x"></i>
</button>
</div>
<div class="nav__content">
<div class="nav__content__left">
<div class="navList__wrap">
<ul class="navList js-navList">
<li>
<a class="active" href="home">
Home
</a>
</li>
<li class="menu-item-has-children">
<a>Activities</a>
<ul class="subnav-list">
<li>
<a href="network_upgrades">Network Upgrades</a>
</li>
<li>
<a href="../dencun/">Dencun Upgrade</a>
</li>
<li>
<a href="eip">EIP Resources</a>
</li>
<li>
<a href="dev_meetings">Meetings</a>
</li>
<li>
<a href="../testnets/">Testnets</a>
</li>
<li>
<a href="podcast">Podcasts</a>
</li>
<li>
<a href="peep_an_eip">PEEPanEIP</a>
</li>
<li>
<a href="surveys">Surveys</a>
</li>
</ul>
</li>
<li>
<a class="active" href="calendar">
Calendar
</a>
</li>
<li>
<a class="active" href="blog">
Blog
</a>
</li>
<li>
<a class="active" href="ech_youtube">
ECH Youtube
</a>
</li>
<li>
<a class="active" href="about">
About Us
</a>
</li>
</ul>
</div>
</div>
<div class="nav__content__right">
<div class="nav__info">
<div class="nav__info__item js-navInfo-item">
<h5 class="text-sm tracking-none fw-500">
Follow us
</h5>
<div class="nav__info__content text-lg text-white mt-16">
<a href="https://twitter.com/EthCatHerders">Twitter</a>
<a href="https://github.com/ethcatherders">Github</a>
<a href="https://www.youtube.com/channel/UCD9iiIwTRtLDYcEWONs2Q3A">Youtube</a>
<a href="https://www.linkedin.com/company/ethereum-cat-herders/">Linkedin</a>
</div>
</div>
<div class="nav__info__item js-navInfo-item">
<h5 class="text-sm tracking-none fw-500">
Email us
</h5>
<div class="nav__info__content text-lg text-white mt-16">
<a href='mailto:[email protected]'>[email protected]</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</nav>
<!-- nav end -->
</header>
<!-- header end -->
<!-- section start -->
<section data-speed="1200" data-autoplay-delay="2900"
class="sliderMain -type-3 js-sliderMain-type-3 sm:layout-mt-headerBar">
<!-- container start -->
<div class="container-fluid h-full px-0 sm:px-20">
<!-- row start -->
<div class="row sm:justify-content-center h-full">
<div class="col-xl-3 offset-xl-2 col-lg-4 offset-lg-1 col-md-5 offset-md-1 col-sm-9">
<div class="slider__content__wrapper sm:text-center h-full z-3">
<div class="slider__content is-active js-slider-content container">
<div data-split="">
<p class="head-eth slider__subtitle mb-8 js-subtitle" style="width: 320px;">
Ethereum Cat Herders
</p>
</div>
<div data-split="" class="mr-minus-col-2 sm:mr-0">
<h1 class="slider__title fw-900 leading-xs js-title">
Decentralized project management to support the Ethereum Network.
</h1>
</div>
<div data-split="" class="mr-minus-col-2 sm:mr-0">
<h5 class="slider__subtitle fw-300 leading-md js-subtitle-2 mt-24">
Our aim is to bring the minimum amount of order that chaos needs to move Ethereum
forward.
</h5>
</div>
<div class="slider__button overflow-hidden mt-32 mr-minus-col-2">
<a href="dencun" class="button -md -outline-black text-black invisible three">
Dencun Upgrade
</a><span>
<a href="peepaneip" class="button -md -outline-black text-black invisible three"
style="margin-left: 20px;">
PEEPanEIP
</a></span>
</a>
</div>
<div class="slider__button overflow-hidden mt-32 mr-minus-col-2">
<a href="network_upgrades" class="button -md -outline-black text-black invisible three">
Upgrades
</a><span>
<a href="testnets" class="button -md -outline-black text-black invisible three"
style="margin-left: 20px;">
Testnets
</a><span>
<a href="podcast" class="button -md -outline-black text-black invisible three"
style="margin-left: 20px;">
Podcast
</a></span>
</div>
</div>
</div>
</div>
<div class="col lg:pr-0 col-lg-7 col-md-6 swiper-col">
<div class="swiper-container h-100vh">
<div class="swiper-wrapper z-2">
<div class="swiper-slide overflow-hidden">
<div class="slider__img" data-swiper-parallax="150" data-parallax="0.7"
data-swiper-parallax-opacity="0">
<div data-parallax-target class="bg-image swiper-lazy js-image"
data-background="img/headers/home-1-slider/logo1.jpg"></div>
</div>
<div class="slider__img__cover js-image-cover"></div>
<div class="slider__img__bg bg-dark-1"></div>
</div>
</div>
</div>
</div>
</div>
<!-- row end -->
<!-- slider nav start -->
<div class="slider__navs js-slider-nav js-ui">
</div>
<!-- slider nav end -->
</div>
<!-- container end -->
<!-- ui-element start -->
<div class="ui-element -bottom-left sm:d-none js-ui">
<button type="button" class="ui-element__scroll text-black js-ui-scroll-button">
scroll down
<i class="icon" data-feather="arrow-down"></i>
</button>
</div>
<!-- ui-element end -->
</section>
<!-- section end -->
<section id="section-text" class="layout-pt-xl">
<div class="container">
<div class="row align-items-center container layout-pb-sm">
<div class="col-sm-6 d-lg-block d-xl-block text-center wow fadeInRight" data-wow-delay="0s">
<img class="relative container-fluid" src="img/general/cat-laptop.png" alt="" />
</div>
<div class="col-sm-6">
<h1 class="fw-900 mt-24">What is Ethereum Cat Herders?</h1>
<h5 class="fw-300 mt-24">
Ethereum Cat Herders is a group of individuals, working together to support the Ethereum core
developers with project management and other aspects of communication and coordination.
</h5>
<h5 class="fw-300 mt-24">
Read our journey with Ethereum ecosystem -
</h5>
<h5 class="fw-300">
<a href="https://medium.com/ethereum-cat-herders/review-2020-the-ethereum-cat-herders-70164265c8d9"
target="_blank" class="dashed-underline">Review 2020: The Ethereum Cat Herders</a>
</h5>
<div class="spacer-half"></div>
</div>
</div>
<div class="row align-items-center">
<div class="col-md-6 offset-md-3">
<div class="text-center">
<img class="relative" src="img/general/paws.png" alt="" />
<div class="spacer-20"></div>
</div>
</div>
</div>
</div>
</section>
<!-- section start -->
<section id="section-text" class="layout-pt-sm layout-pb-sm mobile-header-top-padding-0 ">
<div class="container">
<div class="row">
<div class="col-6 ">
<h1 class="fw-900 w-100 container layout-pt-sm">We strive to provide</h1>
</div>
<div class="col-6" style="padding-top: 3.75rem;">
<h1 class="fw-900 w-100 container layout-pt-sm d-nun">Join our Community</h1>
</div>
</div>
<div class="row flex-start2- ">
<div class="col-md-2">
<img class="" src="img/general/cat-peek.png" alt="" />
</div>
<div class="container col-md-4 ml-n100">
<h2 class="fw-900 container ">S <span class="fw-300 fs-p ml-n7">ynergy </span></h2>
<h2 class="fw-900 container ">U <span class="fw-300 fs-p ml-n7">nderpin Improvement Proposals
</span></h2>
<h2 class="fw-900 container ">P <span class="fw-300 fs-p ml-n7">ublicize Network Upgrade </span>
</h2>
<h2 class="fw-900 container ">P <span class="fw-300 fs-p ml-n7">rocess Improvement </span></h2>
<h2 class="fw-900 container ">O <span class="fw-300 fs-p ml-n7">utreach </span></h2>
<h2 class="fw-900 container ">R <span class="fw-300 fs-p ml-n7">esource Curation </span></h2>
<h2 class="fw-900 container ">T <span class="fw-300 fs-p ml-n7">ranscript Availability </span></h2>
</div>
<div class="col-md-6 container">
<div class="">
<div class="col-6">
<h1 class="fw-900 w-100 container layout-pt-sm d-non ">Ethereum ecosystem</h1>
</div>
<div class="holder">
<iframe style="margin-top: 20px;"
src="https://discord.com/widget?id=916516304972824576&theme=dark" width="480" height="350"
allowtransparency="true" frameborder="0"
sandbox="allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts"></iframe>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="section-text" class="layout-pt-sm mobile-header-top-padding-0 ">
<div class="container">
<div class="row align-items-center">
<div class="col-12">
<h1 class="fw-900 mt-24 container">Community Feedback</h1>
</div>
</div>
</div>
</section>
<div class="container layout-pb-xl">
<div class="row" style="margin-top: -100px;">
<div class="col-md-12">
<div id="news-slider" class="owl-carousel">
<div class="post-slide mt-80">
<div class="post-content">
<img style="width: 50%; margin-left: 25%; margin-top: 20px; border-radius: 50%;"
src="https://pbs.twimg.com/profile_images/1082093593840349184/P2B7Qiyn_400x400.jpg" />
<h1 class="post-title2 aligncenter">
<a href="https://twitter.com/TimBeiko">Tim Beiko</a>
</h1>
<div class="container row mt-24">
<h5 style="text-align: justify; font-weight: 400; font-size: 18px;"><a
href="https://twitter.com/TimBeiko/status/1455974435970633728" target="_blank"
class="font-black-default2">"Wanted to share I think <a
href="https://twitter.com/EthCatHerders" target="_blank">@EthCatHerders</a> are
awesome:
they help make ACD and other things accessible to more folks with
transcripts, blog posts, and video series." </a></h5>
</div>
</div>
</div>
<div class="post-slide mt-80">
<div class="post-content">
<img style="width: 50%; margin-left: 25%; margin-top: 20px;" src="img/general/test1.png" />
<h1 class="post-title2 aligncenter">
<a href="https://twitter.com/udiWertheimer">Udi Wertheimer</a>
</h1>
<div style="margin: 0px;" class="row mt-24">
<h5 style="text-align: center; font-weight: 400;"><a
href="https://twitter.com/poojaranjan19/status/1280523925353529347" target="_blank"
class="font-black-default2">"You guys are doing a great job with the Ethereum Cat
Herders so keep doing it. It's really cool." </a></h5>
</div>
</div>
</div>
<div class="post-slide mt-80">
<div class="post-content">
<img style="width: 50%; margin-left: 25%; margin-top: 20px;" src="img/general/test2.png" />
<h1 class="post-title2 aligncenter">
<a href="https://twitter.com/auryn_macmillan" class="">Auryn Macmillan</a>
</h1>
<div class="container row mt-24">
<h5 style="text-align: center; font-weight: 400;">clrfunds - “Really appreciate all of
your effort to wrangle the community.“<br> </h5>
</div>
</div>
</div>
<div class="post-slide mt-80">
<div class="post-content">
<img style="width: 50%; margin-left: 25%; margin-top: 20px;" src="img/general/test3.png" />
<h1 class="post-title2 aligncenter">
<a href="https://twitter.com/notscottmoore" class="">Scott Moore</a>
</h1>
<div class="container row mt-24">
<h5 style="text-align: center; font-weight: 400;">Gitcoin - “Very glad you’re all still
out doing this!”<br> <br> </h5>
</div>
</div>
</div>
<div class="post-slide mt-80">
<div class="post-content">
<img style="width: 50%; margin-left: 25%; margin-top: 20px;" src="img/general/test4.png" />
<h1 class="post-title2 aligncenter">
<a href="https://twitter.com/thegrifft" class="">Griff Green</a>
</h1>
<div class="container row mt-24">
<h5 style="text-align: center; font-weight: 400;">Givethio - “Love you Cat Herders!
MEEEEOOW”<br> <br> </h5>
</div>
</div>
</div>
<div class="post-slide mt-80">
<div class="post-content">
<img style="width: 50%; margin-left: 25%; margin-top: 20px;" src="img/general/test5.png" />
<h1 class="post-title2 aligncenter">
<a href="https://twitter.com/samonchain" class="">Sam Richard</a>
</h1>
<div class="container row mt-24">
<h5 style="text-align: center; font-weight: 400;">ethereum.org - “Keep up the great
work!”<br> <br> </h5>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<section style="margin: 0px 0px 100px;" id="section-text" class="layout-pt-sm mobile-header-top-padding-0 ">
<div class="container mb-24">
<div class="row align-items-center">
<div class="col-12">
<h1 class="fw-900 mt-24 container">Community Supporters</h1>
</div>
</div>
</div>
<div class="slide-container swiper container">
<div class="slide-content">
<div class="card-wrapper swiper-wrapper">
<div class="supporter-container-child swiper-slide">
<div class="border1">
<div class="border2">
<img class="supporter-container-child-image molochdao"
src="https://molochdao.com/img/logo.png" alt="">
<div class="support-content">
<h2 class="content-heading">MolochDAO</h2>
<p class="content-content">MolochDAO is a Decentralized Autonomous Organization,
deployed on
Ethereum mainnet.
Members contribute capital to fund Ethereum
infrastructure. </p>
</div>
</div>
</div>
</div>
<div class="supporter-container-child swiper-slide">
<div class="border1">
<div class="border2">
<img class="supporter-container-child-image esp"
src="https://esp.ethereum.foundation/_next/static/media/esp-logo.96fc01cc.svg" alt="">
<div class="support-content">
<h2 class="content-heading">ESP</h2>
<p class="content-content">Ecosystem Support Program provide grants and other support
to the
builders of the Ethereum ecosystem.</p>
</div>
</div>
</div>
</div>
<div class="supporter-container-child swiper-slide">
<div class="border1">
<div class="border2">
<p class="supporter-container-child-image fem">✨Fellowship of Ethereum Magicians✨</p>
<div class="support-content">
<h2 class="content-heading">FEM</h2>
<p>Ethereum Magicians is a forum for the community where anyone can
join, create topics and discuss about EIPs and technical difficulties of Ethereum
ecosystem.</p>
</div>
</div>
</div>
</div>
<div class="supporter-container-child swiper-slide">
<div class="border1">
<div class="border2">
<img class="supporter-container-child-image eea"
src="https://entethalliance.org/wp-content/uploads/2022/10/EEA-Design_Logo-1.png"
alt="">
<div class="support-content">
<h2 class="content-heading">EEA</h2>
<p>The EEA is a member-led industry organization whose objective is to drive the use of
Enterprise and Mainnet Ethereum blockchain tech as an open-standard to
empower ALL enterprises.</p>
</div>
</div>
</div>
</div>
<div class="supporter-container-child swiper-slide">
<div class="border1">
<div class="border2">
<svg width="93px" height="95px" viewBox="0 0 100 117" version="1.1"
xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<g id="helmet-purple-animated" stroke="white" stroke-width="3" fill="none"
fill-rule="evenodd">
<path
d="M80.8741935,87.8684211 L74.716129,82.1877632 C79.2516129,77.7338684 81.7483871,71.8622368 81.7483871,65.6572105 C81.754231,61.8813819 80.8194519,58.1639665 79.0290323,54.8429211 C77.7673872,52.5131342 76.1289783,50.4097151 74.1806452,48.6184737 L70.9677419,45.6470526 L74.4129032,42.5526316 L77.3483871,45.5143421 L80.1548387,42.7630263 C86.7096774,48.8256316 90.3225806,56.9565789 90.3225806,65.6572105 C90.3225806,73.9953158 86.9677419,81.8835 80.8741935,87.8684211 Z"
id="Path" stroke="#0FCE7C" stroke-width="0.5" fill="#0FCE7C"></path>
<path
d="M80.6741935,107.742632 L50.9645161,107.742632 C27.8903226,107.742632 9.11290323,88.6614474 9.11290323,65.2105263 C9.11290323,41.7563684 27.8870968,22.6784211 50.9709677,22.6784211 C60.5516129,22.6784211 69.6419355,25.9282105 77.0225806,31.9131316 L56.6290323,51.0622895 C54.8351657,50.3168099 52.9125943,49.9329599 50.9709677,49.9326316 C42.6806452,49.9326316 35.9387097,56.7882632 35.9387097,65.2105263 C35.9387097,73.6327895 42.6806452,80.4884211 50.9709677,80.4884211 C52.4099832,80.4873707 53.8411605,80.2758307 55.2193548,79.8604737 L80.6774194,99.3333158 L80.6774194,107.742632 L80.6741935,107.742632 Z M50.9645161,71.2310526 C47.7,71.2310526 45.0419355,68.5282895 45.0419355,65.2105263 C45.0419355,61.8895263 47.7,59.19 50.9677419,59.19 C54.2322581,59.19 56.8903226,61.8895263 56.8903226,65.2105263 C56.8903226,68.5282895 54.2322581,71.2310526 50.9677419,71.2310526 L50.9645161,71.2310526 Z M66,65.2105263 C66,62.2132105 65.1419355,59.4165789 63.6677419,57.0536842 L75.8290323,45.6308684 L75.9322581,45.7409211 L90.3225806,31.9616842 L87.0064516,28.5921316 C77.3806452,18.8071579 64.5806452,13.4210526 50.9677419,13.4210526 C22.8645161,13.4210526 0,36.6551053 0,65.2105263 C0,93.4843421 22.4193548,116.527421 50.1387097,116.977342 L50.1387097,117 L89.783871,117 L89.783871,94.7143421 L63.0580645,74.2736842 C64.974206,71.6433912 66.0047485,68.4686211 66,65.2105263 Z"
id="helmet" fill="#0E0333" fill-rule="nonzero"></path>
<path
d="M51,71 C54.3137085,71 57,68.3137085 57,65 C57,61.6862915 54.3137085,59 51,59 C47.6862915,59 45,61.6862915 45,65 C45,68.3137085 47.6862915,71 51,71 Z M51,80 C59.2842712,80 66,73.2842712 66,65 C66,56.7157288 59.2842712,50 51,50 C42.7157288,50 36,56.7157288 36,65 C36,73.2842712 42.7157288,80 51,80 Z"
id="center-circle" class="center-circle" fill="#0E0333"></path>
<polygon id="particle2" fill="#25E899" fill-rule="nonzero"
points="100 10.1842105 96.7741935 13.4210526 93.5483871 10.1842105 96.7741935 6.94736842">
</polygon>
<polygon id="particle1" fill="#25E899" fill-rule="nonzero"
points="74.1935484 10.1842105 70.9677419 13.4210526 67.7419355 10.1842105 70.9677419 6.94736842">
</polygon>
<path
d="M35.483871,45.7894737 C33.7032258,45.7894737 32.2580645,44.184 32.2580645,42.2030526 L32.2580645,4.06010526 C32.2580645,2.07915789 33.7032258,0.473684211 35.483871,0.473684211 C37.2645161,0.473684211 38.7096774,2.07915789 38.7096774,4.06010526 L38.7096774,42.2030526 C38.7096774,44.184 37.2645161,45.7894737 35.483871,45.7894737"
id="ant1" class="ant1" fill="#0E0333" fill-rule="nonzero"></path>
<path
d="M54.483871,37.4736842 C52.7032258,37.4736842 51.2580645,36.1628271 51.2580645,34.5453985 L51.2580645,3.40196992 C51.2580645,1.78454135 52.7032258,0.473684211 54.483871,0.473684211 C56.2645161,0.473684211 57.7096774,1.78454135 57.7096774,3.40196992 L57.7096774,34.5453985 C57.7096774,36.1628271 56.2645161,37.4736842 54.483871,37.4736842"
id="ant2" class="ant2" fill="#0E0333" fill-rule="nonzero"></path>
</g>
</svg>
<div class="support-content">
<h2 class="content-heading">Gitcoin Grant</h2>
<p>It is a community and infrastructure for Web 3 — a diverse range of tools, technologies, and
networks that enable people to work for the open internet.</p>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="swiper-button-next swiper-navBtn"></div>
<div class="swiper-button-prev swiper-navBtn"></div>
</div>
</section>
<section class="layout-pb-sm">
<div class="container">
<div class="row align-items-center">
<div class="col">
<div class="text-center">
<img class="relative" src="img/general/yarn-long.png" />
</div>
</div>
</div>
</div>
</section>
<!-- <section class="layout-pb-sm">
<div class="container">
<div class="row align-items-center">
<div class="col-12">
<h1 class="fw-900 mt-24 container">ECH Latest Video</h1>
</div>
</div>
<div class="col-12 aligncenter">
<img class="mb-n3" src="img/general/cat-head.png">
</div>
<div class="row">
<div class="col-12">
<div class="vid-container">
<iframe style="border-radius: 30px;" class="latestVideoEmbed" vnum='0' cid="UCD9iiIwTRtLDYcEWONs2Q3A" width="600" height="340" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
</section>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
var reqURL = "https://api.rss2json.com/v1/api.json?rss_url=" + encodeURIComponent("https://www.youtube.com/feeds/videos.xml?channel_id=");
function loadVideo(iframe) {
$.getJSON(reqURL + iframe.getAttribute('cid'),
function(data) {
var videoNumber = (iframe.getAttribute('vnum') ? Number(iframe.getAttribute('vnum')) : 0);
console.log(videoNumber);
var link = data.items[videoNumber].link;
id = link.substr(link.indexOf("=") + 1);
iframe.setAttribute("src", "https://youtube.com/embed/" + id + "?controls=0&autoplay=1");
}
);
}
var iframes = document.getElementsByClassName('latestVideoEmbed');
for (var i = 0, len = iframes.length; i < len; i++) {
loadVideo(iframes[i]);
}
</script> -->
<section id="section-text" class="layout-pb-xl s-antenna">
<div class="container">
<div class="row">
<div class="left-col">
<h5 class="fw-300 mt-24">
<a class="relative container video-thumb" onclick="peepaneip()"><img class="relative container "
src="img/general/box1.png" alt="" /></a>
<a class="relative container video-thumb thirdvid " onclick="themerge()"><img
class="relative container" src="img/general/box3.png" alt="" /></a>
<a class="relative container video-thumb" onclick="kgzmeeting()"><img
class="relative container " src="img/general/box4.png" alt="" /></a>
<a class="relative container video-thumb thirdvid " onclick="eipip()"><img
class="relative container" src="img/general/box5.png" alt="" /></a>
<a class="relative container video-thumb" onclick="ECHteammeetings()"><img
class="relative container" src="img/general/box2.png" alt="" /></a>
</h5>
</div>
<!-- Right Column -->
<div class="right-col">
<img class="right-tv-col" src="img/general/tv-new.svg" alt="" />
<div class="video-player__playing">
<div class="embed-container">
<div>
<iframe id="player" width="560" height="315"
src="https://www.youtube.com/embed/BDPQBVP6XHs" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<div class="col-12 aligncenter mtres" style="margin-top: 100px;">
<div class="">
<a href="https://www.youtube.com/channel/UCD9iiIwTRtLDYcEWONs2Q3A"
class="button -black p10 mt-32 " style="padding-left: 20px; padding-right: 20px;">
View on ECH Channel
</a>
</div>
</div>
</div>
</div>
</section>
<section class=" layout-pb-xl">
<div class="container">
<div class="row align-items-center">
<div class="col-md-12 wow fadeInLeft" data-wow-delay="0s">
<h1 class="fw-900 mt-24 container">The Vision</h1>
<h5 class="fw-300 mt-24 container">
Increase support to the <span style="font-weight: bold;">Ethereum main network </span>with more
community involvement.
</h5>
<div class="spacer-half" style="margin-bottom: 40px;"></div>
</div>
</div>
<div class="row">
<div class="col-sm-3 animate__animated animate__fadeInUp aligncenter wow fadeInUp"
data-wow-delay=".25s">
<div class="serviceCard">
<div class="serviceCard__content">
<div class="d-flex aligncenter ml-minus-4">
<div class="px-20 py-20">
<a href="network_upgrades"> <img class="" src="img/general/paw1.png" alt="" /></a>
</div>
</div>
<h3 class="aligncenter serviceCard__title mt-8 font-brew" style="text-align: center">
Network Upgrade
</h3>
</div>
</div>
</div>
<div class="col-sm-2 aligncenter wow fadeInUp" data-wow-delay=".5s">
<div class="serviceCard">
<div class="serviceCard__content">
<div class="d-flex aligncenter ml-minus-4">
<div class="px-20 py-20">
<a href="dev_meetings"> <img class="" src="img/general/paw2.png" alt="" /></a>
</div>
</div>
<h3 class="aligncenter serviceCard__title mt-8 font-brew">
Meetings
</h3>
</div>
</div>
</div>
<div class="col-sm-2 aligncenter wow fadeInUp" data-wow-delay=".5s">
<div class="serviceCard">
<div class="serviceCard__content">
<div class="d-flex aligncenter ml-minus-4">
<div class="px-20 py-20">
<a href="podcast"> <img class="" src="img/general/paw2.png" alt="" /></a>
</div>
</div>
<h3 class="aligncenter serviceCard__title mt-8 font-brew">
Podcast
</h3>
</div>
</div>
</div>
<div class="col-sm-2 aligncenter wow fadeInUp" data-wow-delay=".75s">
<div class="serviceCard">
<div class="serviceCard__content">
<div class="d-flex aligncenter ml-minus-4">
<div class="px-20 py-20">
<a href="eip"> <img class="" src="img/general/paw3.png" alt="" /></a>
</div>
</div>
<h3 class="aligncenter serviceCard__title mt-8 font-brew">
Resources
</h3>
</div>
</div>
</div>
<div class="col-sm-3 aligncenter wow fadeInUp" data-wow-delay="0s">
<div class="serviceCard">
<div class="serviceCard__content">
<div class="d-flex aligncenter ml-minus-4">
<div class="px-20 py-20">
<a href="surveys"> <img class="" src="img/general/paw4.png" alt="" /></a>
</div>
</div>
<h3 class="aligncenter serviceCard__title mt-8 font-brew">
Surveys
</h3>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="section-text" class="">
<div class="container">
<div class="row align-items-center">
<img class="container " src="img/general/line2.png" alt="">
<div class="container col-12">
<div class="text-center" style="padding-bottom: 0px;">
<div class="spacer-20"></div>
</div>
</div>
</div>
</div>
</section>
<!-- section end -->
<!-- section start -->
<section id="section-text" class="layout-pt-sm layout-pb-2xl mobile-header-top-padding-0 ">
<div class="container">
<div class="row align-items-center">
<div class="col-12">
<h1 class="fw-900 mt-24 ">Want to help the Ethereum Cat Herders?</h1>
<h5 class="fw-300 mt-24 ">
There's plenty of opportunities to weigh in the Ethereum Cat Herders, help with documenting
meeting notes, writing blogs, make community outreach, participate in process improvements, and
even earn bounty.
</h5>
<a href="https://dsc.gg/ech" class="button -black p10 mt-32 "
style="padding-left: 20px; padding-right: 20px;">
Join our Discord
</a><span><a
href="https://docs.google.com/forms/d/1o2Oidzt6qZZ296KkqeNMi6xAALIv8zsBK1Va3Lzc9IQ/viewform?edit_requested=true"
class="button -black p10 mt-32 "
style="margin-left: 20px; padding-left: 20px; padding-right: 20px;">
Join ECH
</a> </span>
</div>
</div>
</div>
</section>
<!-- section end -->
<!-- footer -->
<!-- footer start -->
<footer class="footer -type-1 bg-dark-1 m-100">
<!-- container start -->
<div class="container">
<div class="footer__top">
<!-- row start -->
<div class="row y-gap-48 justify-content-between container">
<div class="col-lg-6">
<p href="home" class="footer__logo text-white font-brew">
Ethereum Cat Herders
</p>
<h5 class="text-white fw-300 mt-16 col-lg-9" style="padding-left:0px;">
Decentralized project management for the Ethereum Network
</h5>
<img class="relative mt-32" src="img/general/paws.png" alt="" />
</div>
<div class="col-lg-auto col-sm-4">
<h4 class="text-xl fw-500 text-white">
Links
</h4>
<div class="footer__content text-base text-light mt-16 sm:mt-12">
<div><a href="home" class="button -underline">Home</a></div>
<div><a href="network_upgrades" class="button -underline mt-4">Activities</a></div>
<div><a href="calendar" class="button -underline mt-4">Calendar</a></div>
<div><a href="blog" class="button -underline mt-4">Blog</a></div>
<div><a href="ech_youtube" class="button -underline mt-4">ECH Youtube</a></div>
<div><a href="about" class="button -underline mt-4">About Us</a></div>
<div><a href="branding_assets" class="button -underline mt-4">ECH Branding Assets</a></div>
</div>
</div>
<div class="col-lg-auto col-auto">
<h4 class="text-xl fw-500 text-white">
Follow us
</h4>
<div class="social -bordered mt-16 sm:mt-12">
<a class="social__item text-white border-light" href="https://twitter.com/EthCatHerders">
<i class="fa fa-twitter"></i>
</a>
<a class="social__item text-white border-light"
href="https://github.com/ethcatherders">
<i class="fa fa-github"></i>
</a>
<a class="social__item text-white border-light"
href="https://www.youtube.com/channel/UCD9iiIwTRtLDYcEWONs2Q3A">
<i class="fa fa-youtube-play"></i>
<a class="social__item text-white border-light"
href="https://www.linkedin.com/company/ethereum-cat-herders/">
<i class="fa fa-linkedin"></i>
</a>
</div>
<h4 class="text-xl fw-500 text-white mt-24">
Email us
</h4>
<div class="footer__content text-base text-light mt-16 sm:mt-12">
<div><a href='mailto:[email protected]'
class="button -underline">[email protected]</a></div>
</div>
<h4 class="text-xl fw-500 text-white mt-24">
</h4>
<div class="footer__content text-base text-light mt-16 sm:mt-12">
<div>
<p style="float: right;
margin-top: 35px;">v1.3.1</p>
</div>
</div>
</div>
</div>
<!-- row end -->
</div>
</div>
<!-- container end -->
</footer>
<!-- footer end -->
</main>
</div>
<script src='js/swiper-bundle.min.js'></script>
<script src='js/carousel.js'></script>
<script src='https://code.jquery.com/jquery-1.12.0.min.js'></script>
<script src='js/owl.carousel.min.js'></script>
<script src='js/script4.js'></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0/js/bootstrap.min.js'></script>
<script src="js/script.js"></script>
<script src="js/vendors.js"></script>
<script src="js/main.js"></script>
<script src="js/script2.js"></script>
<script src="js/script6.js"></script>
<script src='js/script-resize.js'></script>
</body>
</html>