added pages blocks, txs, addresses, and beta section

This commit is contained in:
arnaucode
2017-08-31 00:08:19 +02:00
parent 9092aea11b
commit 58393a26e9
14 changed files with 247 additions and 15 deletions

11
web/views/beta/beta.html Normal file
View File

@@ -0,0 +1,11 @@
<div class="row">
<div class="col-sm-12">
<a ng-href="#!/network" class="btn btn-raised btn-lg c_deepPurple400">
<i class="fa fa-chain o_sidebarIcon" aria-hidden="true"></i> Network
</a>
<a ng-href="#!/sankey" class="btn btn-raised btn-lg c_deepPurple400">
<i class="fa fa-code-fork o_sidebarIcon" aria-hidden="true"></i> Sankey Diagram
</a>
<a ng-href="#!/beta" class="btn btn-raised btn-lg c_deepPurple400">Known addresses</a>
</div>
</div>

14
web/views/beta/beta.js Normal file
View File

@@ -0,0 +1,14 @@
'use strict';
angular.module('app.beta', ['ngRoute'])
.config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/beta', {
templateUrl: 'views/beta/beta.html',
controller: 'BetaCtrl'
});
}])
.controller('BetaCtrl', function($scope, $http, $routeParams) {
});