-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexplorer.html
40 lines (38 loc) · 1.42 KB
/
explorer.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>MANNER</title>
<!--Make it the correct scale on mobile.-->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--Tell Iphone's to get rid of all that stuff hogging the screen.-->
<meta name="apple-mobile-web-app-capable" content="yes" />
<!--Bring in socket.io so we can talk to the server-->
<script src="/socket.io/socket.io.js"></script>
<link rel="stylesheet" href="explorer.css">
</head>
<body>
<div class="twocol">
<div class="title">
<h1>BlockFarm</h1>
</div>
<!-- This is a wrapper for scrollbars -->
<div id="rows_viewbox">
<div class="rows" id="rows">
<div id="svg_sizer">
<svg id="svg">
</svg>
</div>
<div class="row" id="genesis">
<div class="block" id="genesis_block">
<h2>Block #0</h2>
<h1><START></h1>
<h2>This is called the "Genesis Block"</h2>
</div>
</div>
</div>
</div>
</div>
<script src="explorer.js" charset="utf-8"></script>
</body>
</html>