-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (70 loc) · 2.34 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
<html>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="content-type" content="text/html;charset=utf-8">
<meta content="always" name="referrer">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>EOSIO Scholar Testnet</title>
<link rel="stylesheet" href="src/style/index.css?20180416"/>
<body>
<div class="container">
<div class="logo">
<img src="src/images/logo.png?20180415"/>
</div>
<div class="nav">
<a class="nav-item graphic" href="map.html" target="_blank">Graphic</a>
<a class="nav-item list active">List</a>
</div>
<div class="summary">
<div class="summary-item producers">
<img src="src/images/producers.png?20180415"/>
<div class="content">
<p class="summary-item-name">Configured producers:</p>
<p class="summary-item-value" id="configuredProducer"></p>
</div>
</div>
<div class="summary-item last-block">
<div class="center">
<img src="src/images/last-block.png?20180415"/>
<div class="content">
<p class="summary-item-name">Last irreversible block:</p>
<p class="summary-item-value" id="lastBlockEle"></p>
</div>
</div>
</div>
<div class="summary-item block-number">
<div class="content">
<p class="summary-item-name">Number of blocks:</p>
<p class="summary-item-value" id="numberOfBlocksEle"></p>
</div>
<img src="src/images/block-number.png?20180415"/>
</div>
</div>
<table id="BPTable">
<tr class="title">
<th>Producer</th>
<th>Organization</th>
<th>Block</th>
<th>API URL</th>
<th>HTTP</th>
<th>P2P</th>
<th>Version</th>
<th>Time</th>
</tr>
</table>
<div class="bottom">
<div class="sponsor">
Created by <a target="_blank" href="https://meet.one/en">MEET.ONE</a>
Sponsored/collaboration with:
<a target="_blank" href="https://eosnation.io/">EOS Nation</a>
<a target="_blank" href="https://www.eosocal.io/">EOSoCal</a>
<a target="_blank" href="https://eoscannon.io">EOS Cannon</a>
</div>
<a target="_blank" class="educational-material" href="https://github.com/ScholarTestnet">
Educational material
</a>
</div>
</div>
</body>
<script src="producer.js?20180417"></script>
<script src="src/js/index.js?201804171"></script>
</html>