forked from esamattis/requirejs-hbs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
30 lines (27 loc) · 778 Bytes
/
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>
<html>
<head>
<title>requirejs-hbs example</title>
<meta charset="utf-8" />
</head>
<body>
<!--
Two ways to load your project.
In development mode, you will want to load the original source files. Include
those lines to load the require.js library and the require.js configuration,
then the main module:
-->
<script src="assets/lib/require.js"></script>
<script src="assets/main.config.js"></script>
<script>
require(["js/main"]);
</script>
<!--
In production, you will want to load all of the above (including all main
module dependencies and precompiled templates). First run
r.js -o app.build.js
to build the project, then include this line:
<script src="assets-build/js/main.js"></script>
-->
</body>
</html>