forked from litendavid/RIA-developing-environment
-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
31 lines (30 loc) · 1.41 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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<link rel="Stylesheet" href="css/reset-min.css" type="text/css" media="all" />
<link rel="Stylesheet" href="css/base-min.css" type="text/css" media="all" />
<link rel="Stylesheet" href="css/application.css" type="text/css" media="all" />
<title>My application</title>
</head>
<body>
<div id="wrapper">
<h1>Welcome!</h1>
<p>My very nice application!</p>
</div>
<script type="text/javascript" src="script/resources/jquery-1.4.min.js"></script>
<script type="text/javascript" src="script/application.js"></script>
<!-- remove tags below here after development! -->
<script type="text/javascript">
window.devenvsettings = {
unittest : 'jspec', // can be 'qunit' or 'jspec'
prettyprint : 'Application', // the default datapath to prettyprint
codemirror : true, // whether or not to use codemirror console, otherwise just textarea
lint : 'script/application.js' // default filepath to lint
};
</script>
<script type="text/javascript" src="devenv/qunit/qunit.js"></script> <!-- cannot load dynamically, needs load event -->
<script type="text/javascript" src="devenv/devenv.js"></script>
</body>
</html>