forked from boogunote/bn5
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
30 lines (28 loc) · 792 Bytes
/
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
<!doctype html>
<html>
<head>
<script>
var is_nodewebkit = (typeof process == "object");
if (is_nodewebkit) {
// window.win = require('nw.gui').Window.get();
window.node_global = window.global;
}
</script>
<title>BooguNote5</title>
<link rel="stylesheet" type="text/css" href="styles/styles.css">
</head>
<body aurelia-app>
<div class="splash">
<div class="message">Loading...</div>
</div>
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>
// System.config({
// baseURL: '.'
// });
// System.baseUrl = 'dist'; //NOTE: You can move this into the config.js file, if you like.
System.import('aurelia-bootstrapper');
</script>
</body>
</html>