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

62 lines
1.9 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
<h3 style="font-size: 12px; margin-top: 20px">
2016-04-15 02:59:41 +00:00
Server time: {{server_timestamp}} |
2016-04-14 07:58:01 +00:00
{{#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-15 03:27:57 +00:00
{{#is_page_zero}}
<h2>100 recent blocks<!--(height: {{height}})--></h2>
{{/is_page_zero}}
{{^is_page_zero}}
<h2>older blocks<!--(height: {{height}})--></h2>
{{/is_page_zero}}
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-18 00:50:21 +00:00
<td>age {{age_format}} (Δm)</td>
<td>block hash</td>
2016-04-14 00:31:19 +00:00
<td>txs</td>
2016-04-17 21:52:35 +00:00
<td>fees</td>
<td>outputs</td>
2017-05-18 22:58:30 +00:00
<td>ring size</td>
2016-04-14 00:31:19 +00:00
<td>size [kB]</td>
2016-04-12 03:31:26 +00:00
</tr>
2016-04-08 09:32:12 +00:00
{{#blocks}}
<tr>
2016-04-15 23:07:47 +00:00
<td><a href="/block/{{height}}">{{height}}</a></td>
2016-04-18 00:50:21 +00:00
<td>{{age}} ({{time_delta}})</td>
2016-04-15 23:07:47 +00:00
<td><a href="/block/{{hash}}">{{hash}}</a></td>
2016-04-08 09:32:12 +00:00
<td>{{notx}}</td>
2016-04-17 21:52:35 +00:00
<td>{{fees}}</td>
<td>{{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-15 02:59:41 +00:00
<div class="center" style="text-align: center;">
2016-04-15 04:42:46 +00:00
{{^is_page_zero}}
2016-04-15 03:10:55 +00:00
<a href="/page/{{prev_page}}">previous page</a> |
<a href="/">first page</a> |
2016-04-15 02:59:41 +00:00
{{/is_page_zero}}
current page: {{page_no}}/<a href="/page/{{total_page_no}}">{{total_page_no}}</a>
| <a href="/page/{{next_page}}">next page</a>
</div>
2016-04-07 07:01:49 +00:00
</div>