forked from shopglobal/turtlenode.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
163 lines (141 loc) · 4.49 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<!DOCTYPE html>
<html lang="en" class="route-documentation">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Athena (ATHX) is a CryptoNote slow settlement network.">
<title>Athena (ATHX) Nodes</title>
<link rel='shortcut icon' type='image/x-icon' href='assets/favicon.ico' />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.1/css/bulma.min.css">
</head>
<body >
<section class="hero is-white is-fullheight">
<!-- Hero head: will stick at the top -->
<div class="hero-head">
<header class="navbar" style="padding-top:10px;">
<div class="container">
<div class="navbar-brand">
<a class="navbar-item is-size-3 has-text-weight-semibold">
Athena
</a>
<span class="navbar-burger burger" data-target="navbarMenu">
<span></span>
<span></span>
<span></span>
</span>
</div>
<div id="navbarMenu" class="navbar-menu">
<div class="navbar-end">
<span class="navbar-item">
<a href="http://athenanode.io/" class="button is-light">
<span class="icon">
<i class="fa fa-server"></i>
</span>
<span>Nodes</span>
</a>
</span>
<span class="navbar-item">
<a href="http://explorer.athx.org" class="button is-light">
<span class="icon">
<i class="fa fa-cubes"></i>
</span>
<span>Explorer</span>
</a>
</span>
<span class="navbar-item">
<a href="http://wallet.athx.org/" class="button is-light">
<span class="icon">
<i class="fa fa-wallet"></i>
</span>
<span>Wallet</span>
</a>
</span>
<span class="navbar-item">
<a href="http://mining.athx.org" class="button is-light">
<span class="icon">
<i class="fa fa-server"></i>
</span>
<span>Mining</span>
</a>
</span>
</div>
</div>
</div>
</header>
</div>
<!-- Hero content: will be in the middle -->
<div class="container">
<table id="nodeTable" class="table table-striped table-bordered" style="width: 100%" align="center">
<thead>
<tr>
<th>Hostname</th>
<th>Port</th>
<th>Name</th>
<th>Region</th>
<th>Height</th>
<th>Synced</th>
<th>Difficulty</th>
<th>Network
<br />Hashrate</th>
<th>Tx. Pool</th>
<th>Tx. Count</th>
<th>Inc. Conn.</th>
<th>Out. Conn.</th>
<th>Version</th>
</tr>
</thead>
</table>
</div>
<!-- Hero footer: will stick at the bottom -->
<footer class="footer hero-foot">
<div class="container">
<div class="columns">
<div class="column has-text-left">
© 2018 Athena Foundation
</div>
<div class="column has-text-right">
<a href="http://chat.athx.org" class="button is-dark" style="background: #6c81ca;">
<span class="icon">
<i class="fab fa-discord"></i>
</span>
<span>Discord</span>
</a>
<a href="https://reddit.com/r/athxnetwork" class="button is-dark" style="background: #ff4500;">
<span class="icon">
<i class="fab fa-reddit"></i>
</span>
<span>Reddit</span>
</a>
<a href="https://github.com/athena-network" class="button is-dark">
<span class="icon">
<i class="fab fa-github"></i>
</span>
<span>Github</span>
</a>
</div>
</div>
</div>
</footer>
</section>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdn.datatables.net/1.10.19/js/jquery.dataTables.min.js"></script>
<script defer src="https://use.fontawesome.com/releases/v5.1.0/js/all.js"></script>
<script type="text/javascript">
document.addEventListener('DOMContentLoaded', () => {
const $navbarBurgers = Array.prototype.slice.call(document.querySelectorAll('.navbar-burger'), 0);
if ($navbarBurgers.length > 0) {
$navbarBurgers.forEach( el => {
el.addEventListener('click', () => {
const target = el.dataset.target;
const $target = document.getElementById(target);
el.classList.toggle('is-active');
$target.classList.toggle('is-active');
});
});
}
});
</script>
<script src="./config.js"></script>
<script src="./assets/js/main.min.js"></script>
</body>
</html>