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

41 lines
1.2 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">
<h1 class="center">Hidden Monero Blockchain Explorer</h1>
<h3 style="font-size: 12px; margin-top: 0px">(no javascript - no web analytics trackers - no images - open sourced)</h3>
</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-13 07:00:07 +00:00
<td>Age (h:m:s)</td>
<td>block hash</td>
2016-04-13 03:01:59 +00:00
<td>reward (fees)</td>
2016-04-12 03:31:26 +00:00
<td>no_of_txs</td>
2016-04-13 00:10:21 +00:00
<td>inputs/outputs</td>
2016-04-12 03:31:26 +00:00
<td>mixin_range</td>
2016-04-13 01:49:09 +00:00
<td>size [kbytes]</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>