-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
85 lines (75 loc) · 4.41 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
<!DOCTYPE html>
<html ng-app="app" ng-controller="PageController as page">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="initial-scale=1, width=device-width">
<title ng-bind="appconf.labels.title">Loading ...</title>
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<!--for page header-->
<link href='https://fonts.googleapis.com/css?family=Open+Sans:400,700' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/bootswatch/yeti/bootstrap.min.css">
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="node_modules/angular-loading-bar/build/loading-bar.min.css">
<link rel="stylesheet" href="node_modules/angularjs-toaster/toaster.min.css">
<link rel="stylesheet" href="node_modules/angular/angular-csp.css">
<link rel="stylesheet" href="node_modules/ui-select/dist/select.min.css">
<link rel="stylesheet" href="node_modules/sca-ng-wf/css/style.css">
<link rel="stylesheet" href="node_modules/animate.css/animate.min.css">
<link rel="stylesheet" href="node_modules/sca-shared/css/style.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<toaster-container toaster-options="{'position-class': 'toast-bottom-right', 'close-button': {'toast-error': true}}"></toaster-container>
<div class="page-header">
<div class="profile" ng-cloak ng-if="user.profile" style="float: right;">
<a href="/profile" target="_blank">
{{user.profile.fullname}}
</a>
</div>
<h1><a href="/">Brain Life</a></h1>
</div>
<ng-view></ng-view>
<!--pre angular dep-->
<script src="node_modules/jquery/dist/jquery.min.js"></script><!--bootstrap requires jquery-->
<script src="node_modules/ace-builds/src-min-noconflict/ace.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script src="node_modules/reconnectingwebsocket/reconnecting-websocket.min.js"></script>
<!--angular-->
<script src="node_modules/angular/angular.min.js"></script>
<script src="node_modules/angular-route/angular-route.min.js"></script>
<script src="node_modules/angular-jwt/dist/angular-jwt.min.js"></script>
<script src="node_modules/angular-animate/angular-animate.min.js"></script>
<script src="node_modules/angular-cookies/angular-cookies.min.js"></script>
<script src="node_modules/angular-loading-bar/build/loading-bar.min.js"></script>
<script src="node_modules/angular-sanitize/angular-sanitize.min.js"></script><!-- suggested by ui-select-->
<script src="node_modules/ui-select/dist/select.min.js"></script>
<script src="node_modules/angular-bootstrap/ui-bootstrap.min.js"></script>
<script src="node_modules/angular-bootstrap/ui-bootstrap-tpls.min.js"></script>
<script src="node_modules/angularjs-toaster/toaster.min.js"></script>
<script src="node_modules/angular-ui-ace/src/ui-ace.js"></script>
<script src="node_modules/angular-gravatar/build/angular-gravatar.min.js"></script>
<script src="node_modules/angular-timeago/dist/angular-timeago.min.js"></script>
<script src="node_modules/angular-location-update/angular-location-update.min.js"></script>
<!-- post anglar -->
<script src="node_modules/ng-file-upload/dist/ng-file-upload.min.js"></script>
<!-- other things -->
<script src="node_modules/plotly.js/dist/plotly.min.js"></script>
<script src="node_modules/three/build/three.min.js"></script>
<script src="node_modules/three/examples/js/controls/OrbitControls.js"></script>
<script src="node_modules/three/examples/js/loaders/VTKLoader.js"></script>
<script src="node_modules/stats.js/build/stats.min.js"></script><!--what is this used for?-->
<script src="node_modules/sca-shared/js/shared.js"></script>
<script src="config.js"></script>
<script src="/shared/config.js"></script>
<script src="node_modules/sca-ng-wf/js/wf.js"></script>
<script src="node_modules/sca-product-raw/ui/raw.js"></script>
<script src="js/app.js"></script>
<script src="js/directive.js"></script>
<script src="js/router.js"></script>
<script src="js/page.js"></script>
<script src="js/submit.js"></script>
<script src="js/tasks.js"></script>
</body>
</html>