mirror of
https://github.com/arnaucube/goBlockchainDataAnalysis.git
synced 2026-02-07 11:46:38 +01:00
added pages blocks, txs, addresses, and beta section
This commit is contained in:
11
web/views/beta/beta.html
Normal file
11
web/views/beta/beta.html
Normal 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
14
web/views/beta/beta.js
Normal 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) {
|
||||
|
||||
});
|
||||
Reference in New Issue
Block a user