-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathblock.html
More file actions
64 lines (52 loc) · 2.13 KB
/
block.html
File metadata and controls
64 lines (52 loc) · 2.13 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" 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">
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" type="image/x-icon" href="/static/favicon.ico">
<title>P2Pool Node Status - Block</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/bootstrap-theme.min.css">
<script type="text/javascript" src="d3.v2.min.js"></script>
<script src="js/jquery-2.0.3.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery-dateFormat.min.js"></script>
<script src="js/util.js"></script>
<script src="js/charts.js"></script>
<script src="js/config.json"></script>
<script src="js/init.js"></script>
<!-- Custom styles for this template -->
<link href="css/p2pool-node-status.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id='header'></div>
<div class="container">
<div class="page-header">
<div id="ad"></div>
<h1 id="page-title"></h1>
<b>
<small>
<span id='_node' class='hidden'>Node: </span>
<span id='node' class='hidden'></span><br/>
<span id='updated'></span>
</small>
</b>
</div>
<div id="block_data">
<p>Loading...</p>
</div>
</div> <!-- /container -->
<div id='footer'></div>
<script type="text/javascript" src="js/pages/block.js"></script>
</body>
</html>