-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
573 lines (555 loc) · 33.3 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
<!DOCTYPE html>
<!--
_____ _ _ _____ _ _ _
/ ____| | | | | / ____| (_) | | |
| | _ _ _ __ | |__ ___ _ __ _ __ _ _ _ __ | | __ | | __ _ _ _| | __| |
| | | | | | '_ \| '_ \ / _ \ '__| '_ \| | | | '_ \| |/ / | | |_ | | | | | |/ _` |
| |___| |_| | |_) | | | | __/ | | |_) | |_| | | | | < | |__| | |_| | | | (_| |
\_____\__, | .__/|_| |_|\___|_| | .__/ \__,_|_| |_|_|\_\ \_____|\__,_|_|_|\__,_|
__/ | | | |
|___/|_| |_|
-->
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/style.min.css?v=1.0.0">
<!--<link rel="stylesheet" type="text/css" href="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.0.3/cookieconsent.min.css" />-->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500;600;700&family=IBM+Plex+Sans:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff"> <!--tags-->
<title>Cypherpunk Guild</title>
<meta property="og:title" content="Cypherpunk Guild" />
<meta name="twitter:title" content="Cypherpunk Guild" />
<meta property="og:image" content="/img/og.jpg">
<meta name="description" content="Enabling coders to prioritize privacy for a world free from prying eyes."/>
<meta property="og:description" content="Enabling coders to prioritize privacy for a world free from prying eyes." />
<meta name="twitter:description" content="Enabling coders to prioritize privacy for a world free from prying eyes." />
<!--end tags-->
</head>
<body data-spy="scroll" data-target="#header" data-offset="250">
<header class="header liquid">
<div class="header__container container">
<div class="header__leftside">
<div class="header__leftside-logo">
<img src="assets/logo.svg" alt="Cypherpunk Guild">
</div>
</div>
<ul class="header__nav toggle nav">
<li class="header__nav-li nav-item"><a class="header__nav-a nav-link" href="https://cypherpunkguild.medium.com/">Medium Blog</a></li>
<li class="header__nav-li nav-item"><a class="header__nav-a nav-link" href="assets/CPG_Brand_Assets.zip">Press Kit</a></li>
<li class="header__nav-li nav-item"><a class="header__nav-a nav-link" href="#contact">Contact</a></li>
</ul>
<a href="javascript:void(0);" id="menu" class="header__menu toggle">
<span></span>
<span></span>
<span></span>
</a>
</div>
</header>
<section class="hero">
<div class="hero__container container">
<div class="hero__row row">
<div class="hero__col col-md-12 col-12">
<div class="hero__col-container">
<svg viewBox="0 0 170 18" class="hero__title h1">
<text x="0" y="15" fill="#212721">Priv4cy 1s th3 p0wer</text>
</svg>
<h3 class="hero__descr h3">
ENABLING CODERS TO PRIORITIZE PRIVACY
</h3>
<svg viewBox="0 0 170 18" class="hero__title h1">
<text x="0" y="15" fill="#212721">t0 selec7iv3ly reve4</text>
</svg>
<h3 class="hero__descr h3">
FOR A WORLD FREE FROM PRYING EYES.
</h3>
<svg viewBox="0 0 170 18" class="hero__title h1">
<text x="0" y="15" fill="#212721">0neself t0 7he w0rld.</text>
</svg>
</div>
</div>
</div>
<div class="hero__row row">
<div class="hero__col col-md-6 col-12">
<p>
Prying eyes, eavesdropping ears, clawing hands… Today’s internet is dark forest full of predators and parasites, ready to exploit the unwary and unprotected. We must do better.
</p>
</div>
<div class="hero__col col-md-6 col-12">
<p>
We envision a world where ordinary people can freely and confidently conduct their digital affairs, aware and equipped to face the ever-present threats. A world where privacy by design is the norm.
</p>
</div>
</div>
</div>
</section>
<section class="how">
<div class="how__container container">
<div class="how__row row">
<div class="how__col col-md-6 col-12">
<h3 class="h3">
Who are the cypherpunks?
</h3>
<p>
Cypherpunks are advocates for the widespread use of strong cryptography and technologies that enhance privacy and self-sovereignty. The movement began in the 1980s, but the name was coined in 1992, followed by Eric Hughes’ 1993 <a href="https://www.activism.net/cypherpunk/manifesto.html">A Cypherpunk’s Manifesto</a>. Notable achievements by cypherpunks include the creation of the Electronic Frontier Foundation (EFF), PGP, SSL, SSH, BitTorrent, Tor, WikiLeaks, Bitcoin, smart contracts, Zcash, and Signal. A great introduction is Reason TV’s short documentary, <a href="https://reason.com/video/2020/10/07/before-the-web-the-1980s-dream-of-a-free-and-borderless-virtual-world/">Cypherpunks Write Code</a>.<br>
The “cypherpunk” name was a pun based on “cyberpunk”. “Cipher”—an encryption-decryption algorithm—comes from the Arabic word for zero. So “cypherpunk” should not be confused with cyberpunk--cypherpunks are a movement based on a philosophy, while cyberpunk is a genre and Blade Runner aesthetic. And, despite their shared fondness for masks, cypherpunks should not be confused with Anonymous: cypherpunks defend, Anonymous attacks.
</p>
</div>
<div class="how__col col-md-6 col-12">
<svg viewBox="0 0 170 45" class="how__svg">
<text x="0" y="18" fill="#212721">
<tspan x="0" dy="0em">cyph3rpunks</tspan>
<tspan x="0" dy="1em"> wr1te c0de</tspan>
</text>
</svg>
<button type="button" class="how__img-container pop" data-toggle="modal" data-src="https://www.youtube.com/embed/YWh6Yzr12iQ" data-target="#myModal">
<img src="img/video.png" class="how__img" alt="Play Video">
</button>
<svg viewBox="0 0 170 24" class="how__svg">
<text x="0" y="18" fill="#212721">>_</text>
</svg>
</div>
</div>
</div>
</section>
<section class="council">
<div class="council__container container">
<div class="council__row row">
<div class="council__col col-md-3 col-12">
<h4 class="h4">
Council
</h4>
</div>
<div class="council__col col-md-9 col-12">
<p class="council__title">The Cypherpunk Guild Council consists of:</p>
<div class="row">
<div class="col-md-6 col-12">
<!-- card #1-->
<div class="card card--v1">
<div class="card__img card__img--v1">
<img src="img/card/arto.png" alt="Arto">
</div>
<div class="card__descr">
<div class="card__descr-inner">
<p class="card__descr-name">Arto Bendiken</p>
<p class="card__descr-sub">arto.near</p>
</div>
<p class="card__descr-position">Autodidact, cypherpunk, entrepreneur, and prolific open-source author.</p>
<div class="card__descr-soc">
<a class="card__descr-soc--twitter" href="https://twitter.com/bendiken">
<img src="/img/tw.svg" alt="twitter">
</a>
<a class="card__descr-soc--linkedin" href="https://www.linkedin.com/in/arto/">
<img src="/img/link.svg" alt="linkedin">
</a>
</div>
</div>
</div>
<!-- card #2-->
<div class="card card--v1">
<div class="card__img card__img--v1">
<img src="img/card/ev.png" alt="">
</div>
<div class="card__descr">
<div class="card__descr-inner">
<p class="card__descr-name">Evgeny Kuzyakov</p>
<p class="card__descr-sub">ek.near</p>
</div>
<p class="card__descr-position">ICPC gold medalist who served years in Big Tech before leaving to pursue machine learning and blockchain.</p>
<div class="card__descr-soc">
<a class="card__descr-soc--twitter" href="https://twitter.com/ekuzyakov">
<img src="/img/tw.svg" alt="twitter">
</a>
<a class="card__descr-soc--linkedin" href="https://www.linkedin.com/in/ekuzyakov/">
<img src="/img/link.svg" alt="linkedin">
</a>
</div>
</div>
</div>
<!-- card #3-->
<div class="card card--v1">
<div class="card__img card__img--v1">
<img src="img/card/jon.jpg" alt="Jon">
</div>
<div class="card__descr">
<div class="card__descr-inner">
<p class="card__descr-name">Jon Matonis</p>
<p class="card__descr-sub">matonis.near</p>
</div>
<p class="card__descr-position">Director and Chief Economist at Cypherpunk Holdings, monetary economist, a founding director of the Bitcoin Foundation and a financial columnist.</p>
<div class="card__descr-soc">
<a class="card__descr-soc--twitter" href="https://twitter.com/jonmatonis">
<img src="/img/tw.svg" alt="twitter">
</a>
<a class="card__descr-soc--linkedin" href="https://www.linkedin.com/in/jonmatonis/">
<img src="/img/link.svg" alt="linkedin">
</a>
</div>
</div>
</div>
<!-- card #4-->
<div class="card card--v1">
<div class="card__img card__img--v1">
<img src="img/card/ozy.png" alt="Ozymandius">
</div>
<div class="card__descr">
<div class="card__descr-inner">
<p class="card__descr-name">Ozymandius</p>
<p class="card__descr-sub">ozymandius.near</p>
</div>
<p class="card__descr-position">Digital nomad, NEAR advocate, and founder of 4NTS Guild.</p>
<div class="card__descr-soc">
<a class="card__descr-soc--twitter" href="https://twitter.com/4ntsguild">
<img src="/img/tw.svg" alt="twitter">
</a>
</div>
</div>
</div>
</div>
<div class="col-md-6 col-12">
<!-- card #1-->
<div class="card card--v1">
<div class="card__img card__img--v1">
<img src="img/card/dani.png" alt="Dani">
</div>
<div class="card__descr">
<div class="card__descr-inner">
<p class="card__descr-name">Dani Osorio</p>
<p class="card__descr-sub">waverlymaven.near</p>
</div>
<p class="card__descr-position">Dartmouth grad and veteran of high-growth startups and the Ethereum ecosystem.</p>
<div class="card__descr-soc">
<a class="card__descr-soc--twitter" href="https://twitter.com/WaverlyMaven">
<img src="/img/tw.svg" alt="twitter">
</a>
<a class="card__descr-soc--linkedin" href="https://www.linkedin.com/in/daniosorio/">
<img src="/img/link.svg" alt="linkedin">
</a>
</div>
</div>
</div>
<!-- card #2-->
<div class="card card--v1">
<div class="card__img card__img--v1">
<img src="img/card/frank.png" alt="Frank">
</div>
<div class="card__descr">
<div class="card__descr-inner">
<p class="card__descr-name">Frank Braun</p>
<p class="card__descr-sub">frankbraun.near</p>
</div>
<p class="card__descr-position">Cypherpunk, cryptoanarchist, and co-host of the Cypherpunk Bitstream podcast.</p>
<div class="card__descr-soc">
<a class="card__descr-soc--twitter" href="https://twitter.com/thefrankbraun">
<img src="/img/tw.svg" alt="twitter">
</a>
</div>
</div>
</div>
<!-- card #3-->
<div class="card card--v1">
<div class="card__img card__img--v1">
<img src="img/card/yu.png" alt="Yulian">
</div>
<div class="card__descr">
<div class="card__descr-inner">
<p class="card__descr-name">Yulian</p>
<p class="card__descr-sub">yulian.near</p>
</div>
<p class="card__descr-position">Generalist with 5+ years of experience in High Growth tech companies.</p>
<div class="card__descr-soc">
<a class="card__descr-soc--twitter" href="https://twitter.com/yulianNEAR">
<img src="/img/tw.svg" alt="twitter">
</a>
<a class="card__descr-soc--linkedin" href="https://www.linkedin.com/in/yulian-lavysh/">
<img src="/img/link.svg" alt="linkedin">
</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="council">
<div class="council__container container">
<div class="council__row row mb-50">
<div class="council__col col-md-3 col-12">
<h4 class="h4">
Grants
</h4>
</div>
<div class="council__col col-md-9 col-12">
<h3 class="h3">paused</h3>
<p class="council__title">Currently we do not give out new grants.</p>
</div>
</div>
</div>
</section>
<section class="council">
<div class="council__container container">
<div class="council__row row">
<div class="council__col col-md-3 col-12">
<h4 class="h4">
Funded
</h4>
</div>
<div class="council__col col-md-9 col-12">
<p class="council__title">Below are some of the organizations and projects that the Cypherpunk Guild has had the honor of supporting:</p>
<div class="row">
<div class="col-md-12 col-12">
<!-- card #1-->
<div class="card">
<div class="card__img card__img--v2">
<img src="img/card/fund.png" alt="ZeroPool">
</div>
<div class="card__descr">
<div class="card__descr-inner">
<p class="card__descr-name">ZeroPool</p>
<p class="card__descr-sub"><a href="https://zeropool.network">zeropool.network</a></p>
</div>
<p class="card__descr-position">ZeroPool is a multi-blockchain, ZKP-based solution for transaction privacy.</p>
</div>
</div>
<!-- card #2-->
<div class="card">
<div class="card__img card__img--v2">
<img src="img/card/inc.png" alt="Incognito">
</div>
<div class="card__descr">
<div class="card__descr-inner">
<p class="card__descr-name">Incognito</p>
<p class="card__descr-sub"><a href="https://incognito.org/">incognito.org</a></p>
</div>
<p class="card__descr-position">The privacy marketplace for crypto assets.</p>
</div>
</div>
<!-- card #3-->
<div class="card">
<div class="card__img card__img--v2">
<img src="img/card/zec.png" alt="Zecrey">
</div>
<div class="card__descr">
<div class="card__descr-inner">
<p class="card__descr-name">Zecrey</p>
<p class="card__descr-sub"><a href="https://zecrey.com">zecrey.com</a></p>
</div>
<p class="card__descr-position">Bringing privacy to digital assets.</p>
</div>
</div>
<!-- card #4-->
<div class="card">
<div class="card__img card__img--v2">
<img src="img/card/nym.png" alt="NYM">
</div>
<div class="card__descr">
<div class="card__descr-inner">
<p class="card__descr-name">NYM</p>
<p class="card__descr-sub"><a href="https://nymtech.net">nymtech.net</a></p>
</div>
<p class="card__descr-position">Privacy-infrastructure gurus Nym are producing a ZKP study for the CPG and NEAR.</p>
</div>
</div>
<!-- card #5-->
<div class="card">
<div class="card__img card__img--v2">
<img src="img/card/unic.png" alt="unic">
</div>
<div class="card__descr">
<div class="card__descr-inner">
<p class="card__descr-name">Unicrow</p>
<p class="card__descr-sub"><a href="https://unicrow.io/">unicrow.io</a></p>
</div>
<p class="card__descr-position">Unstoppable escrow for cryptocurrency payments. No 3rd party necessary, no censorship possible. Built for marketplace developers and their users.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="council overflow">
<div class="council__container container">
<div class="council__row row mb-50">
<div class="council__col col-md-3 col-12">
<h4 class="h4">
Backers
</h4>
</div>
<div class="council__col col-md-9 col-12">
<p class="council__title">As a Swiss non-profit association, the Cypherpunk Guild is funded by donors who support our mission.</p>
<div class="row backers">
<div class="col-md-4 col-12">
<img src="img/near.png" class="backers__img" alt="near">
</div>
<div class="col-md-8 col-12">
<p>The founding donor is the NEAR Foundation, steward of the NEAR Protocol, that is enabling a world where people have control over their money, data, and power of governance. <a href="https://near.org">Learn More</a></p>
</div>
</div>
<div class="row backers">
<div class="col-md-4 col-12">
<img src="img/owc.png" class="backers__img" alt="Open Web Collective">
</div>
<div class="col-md-8 col-12">
<p>Another generous donor is the Open Web Collective, a blockchain accelerator and community pioneering the Open Web: a future where users can manage their identity, privacy, money, and data. <a href="https://openwebcollective.com/">Learn More</a></p>
</div>
</div>
<p class="council__title">The Cypherpunk Guild welcomes other donors, large and small. If you would like to contribute, please <a href="#contact">contact us</a> or use one of the methods below.</p>
<div class="qr row">
<div class="col-md-4 col-6">
<img src="img/qr/1.png" alt="QR">
<p>Bitcoin (BTC): <span class="copy">35jD1rozb1H97y3ctDMJPKnPMC3T9TJDQE</span></p>
</div>
<div class="col-md-4 col-6">
<img src="img/qr/2.png" alt="QR">
<p>Ethereum (ETH): <span class="copy">0xF6A17cec86220C28A5F839b828797E3cfEbCB5cd</span></p>
</div>
<div class="col-md-4 col-6">
<img src="img/qr/3.png" alt="QR">
<p>NEAR: <span class="copy">cypherpunkguild.near</span></p>
</div>
<div class="col-md-4 col-6">
<img src="img/qr/4.png" alt="QR">
<p>Decred (DCR): <span class="copy">DsSu1toUhqZA2d4CVUuhRa8t173Sf1Bbnz1</span></p>
</div>
<div class="col-md-4 col-6">
<img src="img/qr/5.png" alt="QR">
<p>Monero (XMR): <span class="copy">8AgZMniMuLxNo7vvULrPZvCqNLznscfSjHSQ5cJyfsYA5HdURpv1cAhFXT8NqVxUhxU4c6zrB8T335QwLqxKc1tDFkFh4Bb</span></p>
</div>
<div class="col-md-4 col-6">
<img src="img/qr/6.png" alt="QR">
<p>Zcash (ZEC): <span class="copy">t1P5rxu6PTVqtvEV6YGaxugYdFsftY4jgey</span></p>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="council" id="contact">
<div class="council__container container">
<div class="council__row row">
<div class="council__col col-md-3 col-12">
<h4 class="h4">
Get involved
</h4>
</div>
<div class="council__col col-md-9 col-12">
<p class="council__title">If you share the cypherpunk philosophy, get involved! It’s true, “Cypherpunks code”, but there are other ways to contribute. If you have an itch, scratch it.<br><br>
<b>You can join the discussion in several venues:</b></p>
<div class="row contact">
<div class="col-md-6 col-12">
<div class="contact__container">
<img src="img/forum.svg" alt="forum">
<a href="https://gov.near.org/tag/cypherpunk-guild">gov.near.org</a>
</div>
<div class="contact__container">
<img src="img/twitter.svg" alt="twitter">
<a href="https://twitter.com/CypherpunkGuild">@CypherpunkGuild</a>
</div>
</div>
<div class="col-md-6 col-12">
<div class="contact__container">
<img src="img/matrix.svg" alt="Matrix">
<a href="https://matrix.to/#/#cypherpunkguild:matrix.org">#cypherpunkguild:matrix.org</a>
</div>
<div class="contact__container">
<img src="img/mastodon.svg" alt="Mastadon">
<a href="https://liberdon.com/@CypherpunkGuild">mastodon</a>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="council">
<div class="council__container container">
<div class="council__row row">
<div class="council__col col-md-3 col-12">
<h4 class="h4">
Events
</h4>
</div>
<div class="council__col col-md-9 col-12">
<div class="event">
<h3 class="event__title">NEARCON Beta</h3>
<p class="event__date">11-14.09.2022</p>
<p class="event__location">Lisbon</p>
<a class="event__link" href="https://nearcon.org/" target="_blank">nearcon.org</a>
</div>
</div>
</div>
</div>
</section>
<section class="council news">
<div class="council__container container">
<div class="council__row row">
<div class="council__col col-md-3 col-12">
<h4 class="h4">
News
</h4>
</div>
<div class="council__col col-md-9 col-12">
<div class="news">
<a class="news__link" href="https://www.streetinsider.com/Newsfile/Cypherpunk+Holdings+Joins+the+Cypherpunk+Guild+Council/18587061.html"></a>
<h3 class="news__title">Cypherpunk Holdings Joins the Cypherpunk Guild Council</h3>
<p class="news__date">June 22, 2021</p>
<p class="news__website">streetinsider.com</p>
</div>
</div>
</div>
</div>
</section>
<div class="modal fade" id="myModal" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-body">
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
<div class="embed-responsive embed-responsive-16by9">
<iframe class="embed-responsive-item" src="https://www.youtube.com/embed/YWh6Yzr12iQ" id="video" allow="autoplay"></iframe>
</div>
</div>
</div>
</div>
</div> <footer class="footer">
<div class="footer__container container">
<div class="footer__row row">
<div class="footer__col footer__col--first col-md-4 col-12">
<a href="/" class="footer__col-logo">
<img src="assets/logo.svg" alt="Cypherpunk Guild">
</a>
<div class="footer__col-main-container">
<a href="mailto:[email protected]">[email protected]</a>
</div>
</div>
<div class="footer__col footer__col--second col-md-4 col-12">
<ul class="footer__nav">
<li class="footer__nav-item"><a href="https://cypherpunkguild.medium.com/">Medium Blog</a></li>
<li class="footer__nav-item"><a href="assets/CPG_Brand_Assets.zip">Press Kit</a></li>
<li class="footer__nav-item"><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
</div>
</footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" crossorigin="anonymous"></script>
<script src="https://npmcdn.com/[email protected]/dist/headroom.min.js"></script>
<script src="js/home.js"></script>
<!--<script src="js/form.js"></script>-->
<script src="js/script.js"></script>
</body>
</html>