-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
58 lines (52 loc) · 2.06 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Editor Page</title>
<style type="text/css">
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/resources/dojo.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5/dijit/themes/claro/claro.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojox/grid/resources/Grid.css";
@import "http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojox/grid/resources/claroGrid.css";
@import "ProfileEditor.css";
html, body, .dijitBorderContainer {
width:100%;
height:100%;
overflow:hidden;
}
</style>
<script type="text/javascript">
var djConfig = {
isDebug: false,
parseOnLoad: true,
baseUrl: './',
modulePaths: { 'editor' : '.' }
};
</script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/dojo/1.5/dojo/dojo.xd.js"></script>
<script type="text/javascript" src="/libs/uow.js"></script>
<script type="text/javascript">
dojo.require('dijit.layout.BorderContainer');
dojo.require('dijit.layout.ContentPane');
</script>
</head>
<body class="claro">
<div dojoType="dijit.layout.BorderContainer" liveSplitters="true">
<div dojoType="dijit.layout.ContentPane" region="top" splitter="false">
<span class="title">Index</span>
<!--<span class='nav_back'><img src='images/nav_back.png'/ >
<a href='index.html'>Back to Editor Index</a></span>-->
</div>
<div dojoType="dijit.layout.ContentPane" region="center" splitter="false">
<h1>
<a href="game/index.html">Daft Game</a>
</h1>
<h1>
<a href="game/simpleGame.html">Simple Game</a>
</h1>
<h1>
<a href="editor/index.html">Editor</a>
</h1>
</div>
</body>
</html>