-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
77 lines (72 loc) · 2.17 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" sizes="256x256" href="favicon.png" />
<title>Signum Public Resources</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/bulma@0.9.4/css/bulma.min.css"
/>
</head>
<body>
<section class="container is-max-widescreen mb-6">
<div class="hero-body">
<h1 class="title">Signum Public Resources</h1>
<p class="subtitle">
Meet the auditable, accessible, and transparent list of Signum
Resources your app can easily engage with!<br />
</p>
<b>TL;DR, JSON files your app can fetch 🤓💻</b>
</div>
<div class="box">
<label class="label">Public Nodes</label>
<a class="button is-link" target="_blank" href="nodes.json"
>View Public Nodes</a
>
</div>
<div class="box">
<label class="label">Mining Pools</label>
<a class="button is-link" target="_blank" href="pools.json"
>View Mining Pools</a
>
</div>
<div class="box">
<label class="label">Third Party Apps </label>
<a class="button is-link" target="_blank" href="third-party-apps.json"
>View Third Party Apps
</a>
</div>
<div class="box">
<p class="is-size-7">
If you want to create or request changes, please visit the Readme file
on the
<a
href="https://github.com/signum-network/public-resources"
target="_blank"
>
Public Repository
</a>
</p>
</div>
</section>
<footer>
<section
class="container is-max-widescreen is-flex is-justify-content-center"
>
<span class="tag">
<b>
<a
href="https://github.com/signum-network/public-resources"
target="_blank"
>
Github Repo
</a>
- Made with ❤️ By Signum Network
</b>
</span>
</section>
</footer>
</body>
</html>