-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
executable file
·118 lines (104 loc) · 4.74 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>ChainTools.io</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/css/bootstrap.min.css" integrity="sha384-9gVQ4dYFwwWSjIDZnLEWnxCjeSWFphJiwGPXr1jddIhOegiu1FwO5qRGvFXOdJZ4" crossorigin="anonymous">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.11/css/all.css" integrity="sha384-p2jx59pefphTFIpeqCcISO9MdVfIm4pNnsL08A6v5vaQc4owkQqxMV8kg4Yvhaw/" crossorigin="anonymous">
<!-- Custom styles for this template -->
<style>
body {
padding-top: 54px;
}
@media (min-width: 992px) {
body {
padding-top: 56px;
}
}
</style>
</head>
<body>
<!-- Navigation -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark fixed-top">
<div class="container">
<a class="navbar-brand" href="/">ChainTools.io</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarResponsive">
<ul class="navbar-nav ml-auto">
<!--<li class="nav-item active">
<a class="nav-link" href="/">Home
<span class="sr-only">(current)</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">About</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Services</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Contact</a>
</li>-->
</ul>
</div>
</div>
</nav>
<!-- Page Content -->
<div class="container">
<div class="row">
<div class="col-lg-12">
<h1 class="mt-5">ChainTools.io</h1>
<p class="lead">A collection of open-source, cryptocurrency-related tools.</p>
<hr/>
<div class="row mb-3">
<div class="col">
<div class="card">
<div class="card-body">
<h5 class="card-title">BTC RPC Explorer</h5>
<p class="card-text">A simple, self-hosted, database-free BTC explorer driven by RPC calls to your own node.</p>
<a href="https://github.com/janoside/btc-rpc-explorer" class="btn btn-secondary"><i class="fab fa-git-square"></i> View Source</a>
<a href="https://btc.chaintools.io" class="btn btn-primary"><i class="fas fa-external-link-alt"></i> Live Demo</a>
</div>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col">
<div class="card">
<div class="card-body">
<h5 class="card-title">LTC RPC Explorer</h5>
<p class="card-text">A simple, self-hosted, database-free LTC explorer driven by RPC calls to your own node.</p>
<a href="https://github.com/janoside/btc-rpc-explorer" class="btn btn-secondary"><i class="fab fa-git-square"></i> View Source</a>
<a href="https://ltc.chaintools.io" class="btn btn-primary"><i class="fas fa-external-link-alt"></i> Live Demo</a>
</div>
</div>
</div>
</div>
<div class="row mb-3">
<div class="col">
<div class="card">
<div class="card-body">
<h5 class="card-title">Lightning RPC Explorer</h5>
<p class="card-text">A simple, self-hosted, database-free Lightning network explorer driven by gRPC calls to your lnd node.</p>
<a href="https://github.com/janoside/lightning-rpc-explorer" class="btn btn-secondary"><i class="fab fa-git-square"></i> View Source</a>
<a href="https://lightning.chaintools.io" class="btn btn-primary"><i class="fas fa-external-link-alt"></i> Live Demo</a>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.0/umd/popper.min.js" integrity="sha384-cs/chFZiN24E4KMATLdqdvsezGxaGsi4hLGOzlXwp5UZB1LY//20VyM2taTB4QvJ" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.0/js/bootstrap.min.js" integrity="sha384-uefMccjFJAIv6A+rW+L4AHf99KvxDjWSu1z9VI8SKNVmz4sk7buKt/6v9KI65qnm" crossorigin="anonymous"></script>
<script defer src="https://use.fontawesome.com/releases/v5.0.11/js/all.js" integrity="sha384-ImVoB8Er8knetgQakxuBS4G3RSkyD8IZVVQCAnmRJrDwqJFYUE4YOv+DbIofcO9C" crossorigin="anonymous"></script>
</body>
</html>