-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
80 lines (70 loc) · 3.38 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="eng" dir="ltr">
<head profile="http://a9.com/-/spec/opensearch/1.1/">
<title>jQuery Claypool : A Web 1.6180339... Javascript Application Framework</title>
<!-- /** server side javasripting with jquery-claypool */ -->
<!--
/**
* The common libraries and plugins
* may be useful to the client as well
* so we simply include them from the
* public server path
*/ -->
<script src="lib/jquery.js" type="text/envjs" ></script>
<script src="lib/jquery.claypool.js" type="text/envjs" ></script>
<!-- /** these are our application specific files */ -->
<!--
/**
* - plugins -
* yup plugins work on the server side too
*/
-->
<script src="plugins/jquery.e4x.js" type="text/envjs" ></script>
<script src="plugins/jquery.json.js" type="text/envjs" ></script>
<script src="plugins/jquery.objtree.js" type="text/envjs" ></script>
<script src="plugins/jquery.loremipsum.js" type="text/envjs" ></script>
<!--
/**
* - app/configs -
* - these files are common to all projects
* - giving developers the common knowledge of
* - where to go to get an overview of the
* - app and how to affect very general settings
* - and wiring behaviors
*
*/
-->
<script src="WEB-INF/app/configs/config.js" type="text/envjs" ></script>
<script src="WEB-INF/app/configs/environments.js" type="text/envjs" ></script>
<script src="WEB-INF/app/configs/logging.js" type="text/envjs" ></script>
<script src="WEB-INF/app/configs/filters.js" type="text/envjs" ></script>
<script src="WEB-INF/app/configs/routes.js" type="text/envjs" ></script>
<!--
/** models - views - services (controllers) -
*
* Note: there are many ways to implement models
* and views in server-side jquery-claypool.
* This strategy is just an example, and you could
* use jquery.jtemplates or any method of your choosing.
* there is no model used in this example. the reason is
* that no model is required ;) any model, will do. even
* no model is fine
*/
-->
<script src="WEB-INF/app/models/releases.js" type="text/envjs" ></script>
<script src="WEB-INF/app/models/docs.js" type="text/envjs" ></script>
<script src="WEB-INF/app/models/news.js" type="text/envjs" ></script>
<script src="WEB-INF/app/models/events.js" type="text/envjs" ></script>
<script src="WEB-INF/app/models/examples.js" type="text/envjs" ></script>
<script src="WEB-INF/app/views/site.js" type="text/envjs" ></script>
<script src="WEB-INF/app/services/site.js" type="text/envjs" ></script>
<!--
/**
* finally boot the app
*/ -->
<script src="WEB-INF/app/boot/server.js" type="text/envjs" ></script>
</head>
<body>
<div>Hello World!</div>
<div id="info-panel"></div>
</body>
</html>