-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (34 loc) · 1.12 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
<head>
<meta charset="utf-8">
<title>VCS over IPFS</title>
<!-- CSS -->
<link rel="stylesheet" href="interface/styles.css" type="text/css">
<!-- JS / FRAMEWORKS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://unpkg.com/ipfs-api/dist/index.min.js"></script>
<script src="https://cdn.jsdelivr.net/gh/ethereum/web3.js/dist/web3.min.js"></script>
</head>
<body>
<!-- PROMPT WINDOW -->
<div id="prompt-space"></div>
<!-- MENU -->
<div id="menu">
<table id="menu-tbl"><tr>
<td>
<ul>
<li><a href="javascript:void(0)">Files</a></li><li><a href="javascript:void(0)">Activity</a></li><li><a href="javascript:void(0)">Tracker</a></li>
</ul>
</td>
<td>
<span id="metamask">MetaMask Not Found</span>
</td>
</tr></table>
</div>
<!-- CONTENT -->
<div id="content-body"></div>
</body>
<!-- JS GLOBAL -->
<script src="js/setup.js"></script>
<script src="js/modules/misc.js"></script>
<!-- APP BUNDLE -->
<script src="js/bundle.js"></script>