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

18 lines
463 B
HTML

<section data-ng-controller="IndexController" data-ng-init="last_blocks()">
<div class="page-header">
<h1>Hello BitPay!</h1>
</div>
<table class="table table-striped">
<thead>
<th>Hash</th>
<th>Time</th>
</thead>
<tbody>
<tr data-ng-repeat="block in blocks">
<td><a href="#!/block/{{block.hash}}">{{block.hash}}</a></td>
<td>{{block.time | date:'short'}}</td>
</tr>
</tbody>
</table>
</section>