-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
158 lines (148 loc) · 5.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link rel="shortcut icon" href="./assets/images/logo.png" type="image/x-icon" />
<link
href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="./assets/css/index.css" />
<title>Dat Ecosystem</title>
</head>
<body>
<div class="positioned">
<style>
nav {
top: 40px;
padding: 20px;
left: 0;
transform: none;
position: relative;
}
.positioned {
display: flex;
justify-content: center;
align-items: center;
background: yellow;
border-bottom: 2px solid black;
font-family: monospace;
font-size: 20px;
font-weight: bold;
color: black;
z-index: 999;
width: 100%;
padding: 20px;
}
</style>
<span>
This website is deprecated. Please check out the new version at <a target="_blank" href="https://dat-ecosystem.org/">https://dat-ecosystem.org </a>
</span>
</div>
<div class="container">
<!-- NAV -->
<nav id="navbar">
<a href="index.html">
<img class="logo" src="./assets/images/logo.png" alt="" />
</a>
<div class="nav_links">
<div class="nav_linksNAV">
<a class="activeLink" href="index.html">Projects</a>
<a href="growth-program.html">Growth Program</a>
<a href="timeline.html">Timeline</a>
<a href="consortium.html">Consortium</a>
</div>
<div class="nav_linksSM">
<a href="https://blog.dat-ecosystem.org/">Blog</a>
<a href="https://discord.gg/egsvGc9TkQ" target="_blank">
<img src="assets/images/HOME/icons8-discord-new-100.png" alt="" />
</a>
<a href="https://github.com/dat-ecosystem" target="_blank">
<img src="assets/images/HOME/icons8-github-100.png" alt="" />
</a>
<a href="https://twitter.com/dat_ecosystem" target="_blank">
<img src="assets/images/HOME/icons8-twitter-100.png" alt="" />
</a>
</div>
</div>
<span
class="menuIcon"
style="font-size: 30px; cursor: pointer"
onclick="openNav()"
>☰</span
>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" class="closebtn" onclick="closeNav()"
>×</a
>
<a class="activeLink" href="index.html">Projects</a>
<a href="growth-program.html">Growth Program</a>
<a href="timeline.html">Timeline</a>
<a href="consortium.html">Consortium</a>
<div class="nav_linksSM">
<a href="https://blog.dat-ecosystem.org/">Blog</a>
<a href="https://discord.gg/egsvGc9TkQ" target="_blank">
<img src="assets/images/HOME/icons8-discord-new-100.png" alt="" />
</a>
<a href="https://github.com/dat-ecosystem" target="_blank">
<img src="assets/images/HOME/icons8-github-100.png" alt="" />
</a>
<a href="https://twitter.com/dat_ecosystem" target="_blank">
<img src="assets/images/HOME/icons8-twitter-100.png" alt="" />
</a>
</div>
</div>
</nav>
</div>
<!-- HEADER -->
<header class="header_projects">
<div class="container_inner">
<h1>Dat Ecosystem</h1>
<p class="header__p">
Is comprised of many projects building on top of the
<a target="_blank" href="https://hypercore-protocol.org/"
>Hypercore protocol</a
>. But it's also more - a constellation of people and shared values.
</p>
</div>
</header>
<!-- PROJECTS -->
<article class="container_inner">
<div class="article_header">
<h6 class="article_header_h6">Community for the next generation Web</h6>
<h1 class="article_header_h1">Projects</h1>
<h3 class="article_header_h3">
Dat ecosystem is driven forward by many projects, most self funded. Some of the projects contribute maintainance and development to core pieces of the Dat ecosystem while others create high level applications built on top of p2p protocols.
</h3>
</div>
<div id="projectsContainer" class="projects_container"></div>
</article>
<!-- FOOTER -->
<footer class="container_inner">
<div class="footerContent">
<p>Join the Dat Ecosystem chat network</p>
<div>
<a href="https://discord.gg/egsvGc9TkQ" target="_blank"
><img src="assets/images/HOME/icons8-discord-new-100.png" alt="discord"
/></a>
<a
target="_blank"
href="https://github.com/dat-ecosystem/dat-ecosystem.github.io/blob/main/README.md#connect-to-cabal-with-cli-or-download-cabal-desktop"
><img src="assets/images/Cabal.png" alt="cabal"
/></a>
</div>
</div>
</div>
</footer>
<p class="mitsu">
Made With <img src="./assets/images/heart.png" width="16" alt=""> By <a class="mitsuLink" href="https://mitsustudio.com/">MitsuStudio.com</a>
</p>
<script src="projects.js"></script>
<script src="navbar.js"></script>
<script src="bundle.js"></script>
</body>
</html>