forked from GMory/eos-scholar-testnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (66 loc) · 2.39 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
<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>EOS.IO Scholar Testnet</title>
<link rel="stylesheet" href="index.css?20180321"/>
<body>
<div class="container">
<div class="logo">
<img src="assets/logo.png"/>
</div>
<div class="summary">
<div class="summary-item producers">
<img src="assets/producers.svg"/>
<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="assets/last-block.svg"/>
<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="assets/block-number.svg"/>
</div>
</div>
<table id="BPTable">
<tr class="title">
<th>Producer</th>
<th>Name</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">
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://meet.one">MEET.ONE</a>
<a target="_blank" href="https://eoscannon.io">EOS Cannon</a>
</div>
<a target="_blank" class="educational-material" href="https://github.com/EOS-Nation/Scholar-Testnet">
Educational material
</a>
</div>
</div>
</body>
<script src="producer.js?20180321"></script>
<script src="index.js?20180321"></script>
</html>