onion-wownero-blockchain-ex.../src/templates/index.html

52 lines
1.5 KiB
HTML
Raw Normal View History

2016-04-08 09:32:12 +00:00
2016-04-14 00:19:51 +00:00
<div class="center">
2016-04-14 07:58:01 +00:00
<h1 class="center">Onion Monero Blockchain Explorer</h1>
<h4 style="font-size: 15px; margin: 0px">(no javascript - no web analytics trackers - no images - open sourced)</h4>
<h3 style="font-size: 12px; margin-top: 20px">
Server time: {{server_timestamp}} |
{{#refresh}}
<a href="/">Autorefresh is ON (10 s)</a>
{{/refresh}}
{{^refresh}}
<a href="/autorefresh">Autorefresh is OFF</a>
{{/refresh}}
</h3>
2016-04-14 00:19:51 +00:00
</div>
2016-04-12 07:15:33 +00:00
{{{mempool_info}}}
2016-04-14 00:19:51 +00:00
<h2>100 recent blocks<!--(height: {{height}})--></h2>
2016-04-12 07:15:33 +00:00
<div class="center">
<table class="center">
2016-04-12 03:31:26 +00:00
<tr>
<td>height</td>
2016-04-14 00:31:19 +00:00
<td>age [h:m:s]</td>
<td>block hash</td>
2016-04-14 00:31:19 +00:00
<td>reward/fees</td>
<td>txs</td>
2016-04-13 00:10:21 +00:00
<td>inputs/outputs</td>
2016-04-14 00:31:19 +00:00
<td>mixins</td>
<td>size [kB]</td>
2016-04-12 03:31:26 +00:00
</tr>
2016-04-08 09:32:12 +00:00
{{#blocks}}
<tr>
<td>{{height}}</td>
2016-04-13 07:00:07 +00:00
<td>{{age}}</td>
2016-04-08 09:32:12 +00:00
<td>{{hash}}</td>
2016-04-12 03:31:26 +00:00
<td>{{block_reward}}</td>
2016-04-08 09:32:12 +00:00
<td>{{notx}}</td>
2016-04-13 00:10:21 +00:00
<td>{{xmr_inputs}}/{{xmr_outputs}}</td>
2016-04-12 03:31:26 +00:00
<td>{{mixin_range}}</td>
2016-04-13 01:49:09 +00:00
<td>{{blksize}}</td>
2016-04-08 09:32:12 +00:00
</tr>
{{/blocks}}
</table>
2016-04-07 07:01:49 +00:00
</div>