-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
52 lines (48 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>TypeScript HTML App</title>
<link rel="stylesheet" type="text/css" href="jspm_packages/github/twbs/bootstrap@3.3.5/css/bootstrap.min.css">
<!--<link rel="stylesheet" type="text/css" href="styles/fontawesome/css/font-awesome.min.css">-->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="styles/animStyle.css">
<link rel="stylesheet" type="text/css" href="styles/football.css">
<link rel="stylesheet" href="http://js.arcgis.com/3.12/esri/css/esri.css" />
<script type="text/javascript">
var origin = window.location.origin;
var pathname = window.location.pathname;
var baseUrl = origin + pathname.toLowerCase().replace("index.html", "");
var dojoConfig = {
async: true,
parseOnLoad: true,
paths: {
aurelia: baseUrl + "/scripts/aurelia",
babel: baseUrl + "/scripts/babel",
webcomponentsjs: baseUrl + "/scripts/webcomponentsjs",
views: baseUrl + "/src",
underscore: baseUrl + "/scripts/underscore/underscore.min"
},
shim: {
underscore: {
exports: "_"
}
}
};
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<script src="http://js.arcgis.com/3.12/"></script>
</head>
<body aurelia-app="animation-main">
<script src="jspm_packages/system.js"></script>
<script src="config.js"></script>
<script>
System.config({
"paths": {
"*": "src/*.js"
}
});
System.import('aurelia-bootstrapper');
</script>
</body>
</html>