-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
39 lines (34 loc) · 1.31 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
<!DOCTYPE html>
<html>
<head>
<title>Toram DB</title>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="author" content="Steven Rémot" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/css/materialize.min.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/js/materialize.min.js"></script>
<script type='text/javascript' src='the.js'></script>
</head>
<body>
<nav>
<div class="nav-wrapper">
<a href="#" class="brand-logo">Toram DB</a>
</div>
</nav>
<div id="page-content">
</div>
<script type='text/javascript'>
require(['app'], function (amber) {
amber.initialize({
//used for all new packages in IDE
'transport.defaultAmdNamespace': "amber-toramdb"
}).then(function () {
require(["amber-ide-starter-dialog"], function (dlg) { dlg.start(); });
amber.globals.ToramDb._start();
});
});
</script>
</body>
</html>