insight-ui-zcash/public/views/index.html

79 lines
3.3 KiB
HTML
Raw Normal View History

2014-01-23 11:52:50 -08:00
<div class="alert alert-danger" data-ng-show="flashMessage">
{{flashMessage}}
</div>
2014-01-31 11:35:51 -08:00
<div data-ng-include src="'/views/includes/connection.html'"></div>
2014-01-15 07:40:24 -08:00
<section data-ng-controller="IndexController" data-ng-init="index()">
2014-01-14 14:42:38 -08:00
<div class="container">
2014-01-22 04:45:43 -08:00
<div id="home" class="row">
<div class="col-xs-12 col-md-8">
<h1>Latest Blocks</h1>
<table class="table table-hover table-striped" style="table-layout: fixed">
2014-01-21 13:38:02 -08:00
<thead>
<tr>
<th>Height</th>
<th>Age</th>
2014-02-10 14:25:41 -08:00
<th class="text-right"><span class="ellipsis">Transactions</span></th>
<th class="text-right">Size</th>
2014-01-21 13:38:02 -08:00
</tr>
</thead>
<tbody>
<tr data-ng-show="!blocks.length"><td colspan="4">Waiting for blocks...</td></tr>
2014-01-21 13:38:02 -08:00
<tr class="fader" data-ng-repeat='b in blocks'>
<td>
<a href="/block/{{b.hash}}">{{b.height}}</a>
2014-01-21 13:38:02 -08:00
</td>
<td><span class="ellipsis">{{humanSince(b.time)}}</span></td>
2014-02-11 11:27:35 -08:00
<td class="text-right">{{b.txlength}}</td>
2014-02-12 06:59:29 -08:00
<td class="text-right">{{b.size}} bytes</td>
2014-01-21 13:38:02 -08:00
</tr>
</tbody>
</table>
<div class="btn-more">
<a href="/blocks" class="btn btn-default">See all blocks</a>
</div>
2014-02-10 14:11:13 -08:00
<h2>Latest Transactions</h2>
2014-01-21 13:38:02 -08:00
<table class="table table-hover table-striped" style="table-layout: fixed;">
<thead>
<tr>
<th>Hash</th>
2014-02-10 14:25:41 -08:00
<th class="text-right">Size</th>
<th class="text-right">Value Out</th>
2014-01-21 13:38:02 -08:00
</tr>
</thead>
<tbody>
2014-02-09 16:34:46 -08:00
<tr data-ng-show="!txs.length"><td colspan="3">Waiting for transactions...</td></tr>
<tr class="fader" data-ng-repeat='tx in txs'>
<td>
<a class="ellipsis" href="/tx/{{tx.txid}}">{{tx.txid}}</a>
</td>
2014-02-10 14:25:41 -08:00
<td class="text-right"><span class="ellipsis">{{tx.size}} bytes</span></td>
<td class="text-right"><span class="ellipsis">{{tx.valueOut}} BTC</span></td>
</tr>
</tbody>
</table>
2014-02-10 14:11:13 -08:00
</div>
<div class="col-xs-12 col-md-4 col-gray">
<h2> About </h2>
2014-02-11 11:48:25 -08:00
<p>Insight is an open-source Bitcoin blockchain explorer with complete REST
2014-02-11 04:54:07 -08:00
and websocket APIs that can be used for writing web wallets and other apps
that need more advanced blockchain queries than provided by bitcoind RPC.
2014-02-11 11:48:25 -08:00
Check out the <a href="http://github.com/bitpay/insight" target="_blank">source code</a>.</p>
2014-02-12 08:25:01 -08:00
<p>Insight is still in development, so be sure to report any bugs and provide feedback for improvement at our <a href="https://github.com/bitpay/insight/issues" target="_blank">github issue tracker</a>.</p>
2014-02-11 11:48:25 -08:00
<div id="powered" class="row">
<div class="powered-text">
<small class="text-muted">Powered by</small>
</div>
<a href="http://bitcore.io" target="_blank" class="bitcore" title="Bitcore"></a>
<a href="http://angularjs.org" target="_blank" class="angularjs" title="AngularJS"></a>
<a href="https://code.google.com/p/leveldb/" target="_blank" class="leveldb" title="LevelDB"></a>
<a href="http://nodejs.org" target="_blank" class="nodejs" title="NodeJs"></a>
</div>
2014-01-22 04:45:43 -08:00
</div> <!-- END OF COL-3 -->
</div>
2014-01-06 12:34:25 -08:00
</div>
</section>