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

94 lines
3.6 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-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-md-8 m20v">
2014-01-22 05:39:03 -08:00
<h2>Latest Blocks</h2>
2014-01-22 04:45:43 -08:00
<table class="table table-hover" >
2014-01-21 13:38:02 -08:00
<thead>
<tr>
<th>Height</th>
<th>Age</th>
<th>Transactions</th>
<th>Size</th>
<th>Confirmations</th>
</tr>
</thead>
<tbody>
2014-01-21 18:15:44 -08:00
<tr data-ng-show="!blocks.length"><td colspan="5">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>
</td>
<td>{{humanSince(b.time)}}</td>
2014-01-21 13:38:02 -08:00
<td>{{b.tx.length}}</td>
<td>{{b.size}}</td>
<td>{{b.confirmations}}</td>
</tr>
</tbody>
</table>
2014-01-22 04:45:43 -08:00
<h3 style="margin-top: 50px;"> About </h3>
<p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Quas, sint, neque harum libero eos maiores rerum rem fuga quae architecto ea incidunt dolore optio ullam sit placeat vero perferendis beatae?</p>
<p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis, unde quidem commodi dolor asperiores ullam molestias sit a sapiente ipsa!</p>
<p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Deserunt tempora fugiat dolorem cupiditate perspiciatis praesentium.</p>
2014-01-14 14:42:38 -08:00
</div>
2014-01-21 13:38:02 -08:00
2014-01-22 04:45:43 -08:00
<div class="col-md-4">
<div class="col-gray">
2014-01-22 05:39:03 -08:00
<h4>Latest Transactions</h4>
2014-01-21 13:38:02 -08:00
2014-01-22 04:45:43 -08:00
<table class="table table-hover" style="table-layout: fixed">
<thead>
<tr>
<th>Hash</th>
<th>Age</th>
<th>Value Out</th>
</tr>
</thead>
<tbody>
<tr data-ng-show="!txs.length"><td colspan="5">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>
<td><span class="ellipsis">{{humanSince(tx.time)}}</span></td>
2014-01-22 04:45:43 -08:00
<td>{{tx.valueOut}}</td>
2014-01-21 13:38:02 -08:00
</tr>
2014-01-22 04:45:43 -08:00
</tbody>
</table>
<div class="m50v"></div>
<h4> Other Bitcoin Links </h4>
<ul style="line-height: 22px;">
<li>
<a href="">Most Popular Addresses</a>
2014-01-22 04:45:43 -08:00
<small> - Lorem ipsum dolor sit amet, consectetur adipisicing elit. Dolores.</small>
</li>
<li>
<a href="">Addresses</a>
2014-01-22 04:45:43 -08:00
<small> - Addresses which have received the most payments</small>
</li>
<li>
<a href="">Lorem ipsum dolor.</a>
2014-01-22 04:45:43 -08:00
<small> - Lorem ipsum dolor sit amet.</small>
</li>
<li>
<a href="">Most Popular Addresses</a>
2014-01-22 04:45:43 -08:00
<small> - Addresses which have received the most payments</small>
</li>
<li>
<a href="">Lorem ipsum dolor sit.</a>
2014-01-22 04:45:43 -08:00
<small> - Lorem ipsum dolor sit amet, consectetur adipisicing.</small>
</li>
<li>
<a href="">Addresses</a>
2014-01-22 04:45:43 -08:00
<small> - Addresses which have received the most payments</small>
</li>
</ul>
</div>
</div> <!-- END OF COL-3 -->
</div>
2014-01-06 12:34:25 -08:00
</div>
</section>