basic index page
parent
28a7df74e0
commit
9ea9dfdf7b
@ -0,0 +1,3 @@
|
|||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,8 @@
|
|||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en">
|
||||||
|
<head>
|
||||||
|
<meta charset="UTF-8">
|
||||||
|
<title>Monero blocks</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div>
|
@ -1,21 +1,19 @@
|
|||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
<h1>Hidden Monero blockchain explorer</h1>
|
||||||
<head>
|
|
||||||
<meta charset="UTF-8">
|
|
||||||
<title>Monero blocks</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<div>
|
|
||||||
<h1>Detailed Monero blockchain explorer</h1>
|
|
||||||
<h2>Current height: {{height}}</h2>
|
<h2>Current height: {{height}}</h2>
|
||||||
<div>
|
<div>
|
||||||
<ul>
|
<ul>
|
||||||
{{#blocks}}
|
<table>
|
||||||
<li> {{height}}: {{hash}} </li>
|
{{#blocks}}
|
||||||
{{/blocks}}
|
<tr>
|
||||||
|
<td>{{height}}</td>
|
||||||
|
<td>{{timestamp}}</td>
|
||||||
|
<td>{{hash}}</td>
|
||||||
|
<td>{{notx}}</td>
|
||||||
|
</tr>
|
||||||
|
{{/blocks}}
|
||||||
|
</table>
|
||||||
|
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
Loading…
Reference in New Issue