-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
33 lines (33 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Tic-Tac-Toe</title>
<style type="text/css">
@import "http://o.aolcdn.com/dojo/1.5/dojo/resources/dojo.css";
@import "http://o.aolcdn.com/dojo/1.5/dijit/themes/claro/claro.css";
@import "css/application.css";
</style>
<link href='http://fonts.googleapis.com/css?family=Reenie+Beanie' rel='stylesheet' type='text/css'>
<script type="text/javascript">
var djConfig = {
isDebug: false,
parseOnLoad: true,
baseUrl: './',
modulePaths: {'ttt' : 'widgets'}
};
</script>
<script type="text/javascript" src="http://o.aolcdn.com/dojo/1.5/dojo/dojo.xd.js"></script>
<script type="text/javascript" src="http://o.aolcdn.com/dojo/1.5/dijit/dijit.xd.js"></script>
<script type="text/javascript" src="/libs/uow/trace.js"></script>
<script type="text/javascript" src="/libs/uow.js"></script>
<script type="text/javascript" src="application.js"></script>
</head>
<body class="tundra">
<div dojoType="dijit.layout.BorderContainer" id="layout" gutters="false" liveSplitters="true">
<div dojoType="dijit.layout.ContentPane" region="top" splitter="false">
<h1>Tic-Tac-Toe</h1>
</div>
</div>
</body>
</html>