forked from ethers-io/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
79 lines (76 loc) · 2.75 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
<html>
<head>
<style type="text/css">
body {
font-family: sans-serif;
margin: 30px 0;
}
.centerer {
margin-left: 50%;
}
.centered {
margin-left: -400px;
width: 800px;
}
.content a {
color: #aaa;
font-weight: bold;
}
.content a:hover {
color: #000;
}
.content a.box {
border: 1px solid #aaa;
color: #333;
display: inline-block;
font-weight: bold;
margin-right: 20px;
padding: 20px;
text-align: center;
text-decoration: none;
width: 160px;
}
.content a.box:hover {
background: #eee;
border: 1px solid #666;
color: #000;
}
.gap {
height: 50px;
}
</style>
</head>
<body>
<div class="centerer">
<div class="centered">
<div class="content">
<h1>Documentation</h1>
<hr />
<h2>Application Developers</h2>
<p>
Documentation for developers builing applications in an Ethers container.
</p>
<a class="box" href="./ethers-app/html/">Documentation</a>
<a class="box" href="https://github.com/ethers-io/ethers.io">Source on GitHub</a>
<a class="box" href="https://github.com/ethers-io/ethers-cli">Toolchain on GitHub</a>
<div class="gap"> </div>
<h2>ethers.js</h2>
<p>
The Ethereum JavaScript Library that <a href="https://ethers.io">Ethers</a> is built on top of.
</p>
<a class="box" href="./ethers.js/html/">Documentation</a>
<a class="box" href="https://github.com/ethers-io/ethers.js">Source on GitHub</a>
<!--
<div class="gap"> </div>
<h2>ethers.objc</h2>
<p>
The Ethereum Objective-C Library that <a href="https://itunes.apple.com/us/app/ethers-wallet/id1186052971?mt=8">Ethers Wallet</a> is built on top of.
</p>
<a>Documentation<br /><i>coming soon</i></a>
<a href="https://github.com/ethers-io/ethers.objc">Source on GitHub</a>
-->
</div>
</div>
</div>
</body>
</html>