generated from merc1er/gulp-skel
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathexplorers.html
80 lines (72 loc) · 1.7 KB
/
explorers.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
{% extends 'base.njk' %}
{% block title %}$( footer.explorers )${% endblock %}
{% set explorers = [
{
name: "3XPL",
link: "https://3xpl.com/bitcoin-cash"
},
{
name: "BCH Ninja",
link: "https://explorer.bch.ninja"
},
{
name: "Bitcoin Unlimited",
link: "https://explorer.bitcoinunlimited.info"
},
{
name: "Bitcoin Verde",
link: "https://explorer.bitcoinverde.org"
},
{
name: "Blockchair",
link: "https://www.blockchair.com/bitcoin-cash"
},
{
name: "Blockchain.com",
link: "https://www.blockchain.com/explorer?view=bch"
},
{
name: "BTC.com",
link: "https://bch.btc.com"
},
{
name: "Electroncash.de Explorer",
link: "https://explorer.electroncash.de"
},
{
name: "Melroy's Bitcoin Cash Explorer",
link: "https://explorer.melroy.org/"
},
{
name: "Salem Kode's Bitcoin Cash Explorer",
link: "https://explorer.salemkode.com/"
},
{
name: "Tokenview",
link: "https://bch.tokenview.io/"
},
{
name: "ViaWallet",
link: "https://explorer.viawallet.com/bch"
}
] %}
{% block body %}
<section class="hero-alt">
{% include "navbar.njk" %}
<div class="container py-6 text-white text-center text-md-left">
<h1 class="display-1 font-weight-bold">$( footer.explorers )$</h1>
<p class="h3 text-muted">$( explorers.sub )$</p>
</div>
</section>
<section class="bg-white">
<div class="container">
<div class="row py-6">
{% for explorer in explorers %}
<div class="col-6 col-md-4">
<p><a href="{{ explorer.link }}" target="_blank">{{ explorer.name }} {% include "icons/arrow-right.svg" %}</a></p>
</div>
{% endfor %}
</div>
</div>
</section>
{% endblock %}