forked from KillerCodeMonkey/angularjs-electron-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
63 lines (52 loc) · 2.5 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>BlinkAI - Conversation engine for enterprise learning from every interaction.</title>
<link href="css/photon.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link href="css/blinkai.css" rel="stylesheet">
<link href="http://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!-- Insert this line above script imports -->
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<!-- normal script imports etc -->
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/electron-open-link-in-browser/build/electron-open-link-in-browser.js"></script>
<!-- Insert this line after script imports -->
<script>if (window.module) module = window.module;</script>
<script src="js/jquery.particleground.min.js"></script>
<script src="script.js"></script>
<script src="menu.js"></script>
<!--<script src="/socket.io/socket.io.js"></script>
<script src="bower_components/angular/angular.js"></script>
<script src="bower_components/angular-route/angular-route.js"></script>
<script src="node_modules/angular-socket-io/socket.js"></script>-->
<script src="node_modules/socket.io-client/dist/socket.io.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/socket.io/1.7.3/socket.io.min.js"></script>
<script src="http://cdnjs.cloudflare.com/ajax/libs/moment.js/2.5.1/moment.min.js"></script>
</head>
<body ng-controller="AppCtrl">
<div class="window">
<!-- .toolbar-header sits at the top of your app -->
<header class="toolbar toolbar-header">
<h1 class="title">Blink AI</h1>
</header>
<div class="window-content">
<div class="pane-group">
<ui-view></ui-view>
</div>
</div>
<footer class="toolbar toolbar-footer">
<h1 class="title"></h1>
</footer>
<!-- load requirejs config -->
<script src="require_config.js"></script>
<!-- load requirejs -->
<script src="node_modules/requirejs/require.js"></script>
<!-- load boot-script - it loads configs, routes, runs and bootstraps the app -->
<script src="app/boot.js"></script>
</div>
</body>
</html>