forked from tiero/elements-web
-
Notifications
You must be signed in to change notification settings - Fork 0
/
layout.html
52 lines (50 loc) · 2.08 KB
/
layout.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{.Title}}</title>
<link rel="stylesheet" href="/static/bulma.min.css">
</head>
<body>
<section class="section">
<div class="container">
<h1 class="title is-1">{{.Title}}</h1>
<h1 class="title is-4">🔌 Connect</h1>
<div class="box">
<div class="content">
<strong>Remote P2P Host:</strong> {{.ConnectionDetails.RemoteP2PHost}}<br>
<strong>P2P Port:</strong> {{.ConnectionDetails.P2PPort}}<br>
<hr />
<strong>Remote RPC Host:</strong> {{.ConnectionDetails.RemoteRpcHost}}<br>
<strong>RPC Port:</strong> {{.ConnectionDetails.RpcPort}}<br>
<strong>RPC Username:</strong> {{.ConnectionDetails.RpcUser}}<br>
<strong>RPC Password:</strong> {{.ConnectionDetails.RpcPass}}<br>
</div>
</div>
<h1 class="title is-4">⛓ Blockchain info</h1>
<div class="box">
<div class="content">
<strong>Chain</strong>: {{.BlockchainInfo.Chain}}<br>
<strong>Blocks</strong>: {{.BlockchainInfo.Blocks}}<br>
<strong>Headers</strong>: {{.BlockchainInfo.Headers}}<br>
<strong>Best block hash</strong>: {{.BlockchainInfo.BestBlockHash}}<br>
<strong>Median time</strong>: {{.BlockchainInfo.MedianTime}}<br>
<strong>Verification progress</strong>: {{.BlockchainInfo.VerificationProgress}}<br>
<strong>Initial block download</strong>: {{.BlockchainInfo.InitialBlockDownload}}<br>
<strong>Size on disk</strong>: {{.BlockchainInfo.SizeOnDisk}}<br>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="container">
<div class="content has-text-centered">
<p>
<strong>Elements Core Web UI</strong> by <a href="https://twitter.com/tierotiero" target="_blank">Marco Argentieri</a>. The <a href="https://github.com/tiero/elements-web" target="_blank">source code is MIT licensed</a>
</p>
</div>
</div>
</footer>
</body>
</html>