-
Notifications
You must be signed in to change notification settings - Fork 2
/
timeline.html
124 lines (116 loc) · 4.74 KB
/
timeline.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
<!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" />
<link rel="stylesheet" href="/assets/css/timeline.css" />
<title>Dat Ecosystem</title>
</head>
<body>
<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 href="index.html">Projects</a>
<a href="growth-program.html">Growth Program</a>
<a class="activeLink" 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 href="index.html">Projects</a>
<a href="growth-program.html">Growth Program</a>
<a class="activeLink" 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_timeline">
<div class="container_inner">
<h1>Timeline</h1>
<p class="header__p">
Dat started as a community-driven project for distributed data syncronization.
</p>
</div>
</header>
<!-- Timeline -->
<article class="container_inner">
<div class="article_header">
<h6 class="article_header_h6">Dat story</h6>
<h1 class="article_header_h1">How It All Started</h1>
<h3 class="article_header_h3">Dat's first project was a protocol which later grew to become the independent project (Hypercore protocol). Today Dat ecosystem is a global community of many projects working side by side on open and secure protocols for the web of commons. </h3>
</div>
<div class="timeline" id="timeline"></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=""
/></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=""
/></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="timeline.js"></script>
<script src="navbar.js"></script>
<script src="bundle.js"></script>
</body>
</html>