-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexplorer.html
132 lines (95 loc) · 3.84 KB
/
explorer.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
<!doctype html>
<html lang="en">
<head>
<meta charSet="UTF-8"/>
<title id="title">Idena Apps - Explorer</Title>
<meta http-equiv="X-UA-Compatible" content="chrome=1"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, shrink-to-fit=no"/>
<meta name="description" content="Idena is novel way to create anonymous identity on blockchain.The Idena blockchain is driven by proof-of-person consensus: Every node is linked to a cryptoidentity, one single person with equal voting power."/>
<link rel="shortcut icon" href="./favicon.ico"/>
<link rel="apple-touch-icon" sizes="180x180" href="./images/apple-touch-icon.png"/>
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png"/>
<link rel="icon" type="image/png" sizes="16x16" href="./images/favicon-16x16.png"/>
<link rel="icon" type="image/png" sizes="192x192" href="./images/android-chrome-192x192.png"/>
<link rel="icon" type="image/png" sizes="256x256" href=".images/android-chrome-256x256.png"/>
<meta name="msapplication-TileColor" content="#2456ec"/>
<meta name="theme-color" content="#ffffff"/>
<meta property="og:image:width" content="1200"/>
<meta property="og:image:height" content="630"/>
<meta property="og:image" content="./images/og_image.jpg"/>
<meta property="og:title" content=""/>
<meta name="description" content=""/>
<meta property="og:description" content=""/>
<link href="./css/index.css" rel="stylesheet">
<link href="./css/styles.css" rel="stylesheet">
<link href="./css/dark-mode.css" rel="stylesheet">
</head>
<body>
<header class="header">
<div class="container">
<div class="row justify-content-between align-items-center">
<div class="col-auto">
<div class="header_logo">
<a class="" href="/">
<img src="./images/idena-logo.svg" alt="Idena" width="40px">
</a>
</div>
</div>
<div class="col col-sm-5">
</div>
<div class="col-auto">
</div>
</div>
</div>
</header>
<main class="main">
<div class="container">
<section class="section section_info">
<div class="row">
<div class="col-12 col-sm-7">
<a class="btn btn-nav btn-small" href="/">
<i class="icon icon--thin_arrow_left"></i>
<span id="back">Back to Home</span>
</a>
</div>
</div>
</section>
<section class="section section_tabs">
<h3 id="page-title" class="info_block__accent">All Explorers (--)</h3>
<div id="communities">
<div class="row row-fluid" id="explorer-list">
</div>
</div>
</section>
<section class="section section_info">
<div class="row justify-content-center text-center">
<div class="col-md-8 col-lg-7">
<br/>
<br/>
<p class="desc" id="disclaimer" style="font-size: small"></p>
<br/>
<br/>
<div class="copy" id="donation">
</div>
</div>
</div>
</section>
</div>
</main>
<script src="./js/jquery-3.1.1.min.js"></script>
<script src="./js/popper.min.js"></script>
<script src="./js/bootstrap.min.js"></script>
<script src="./js/jquery-dateformat.min.js"></script>
<script src="./js/preload.js"></script>
<script src="./js/global.js"></script>
<script src="./js/explorer-loader.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-28234742-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-28234742-3');
</script>
</body>
</html>