-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (36 loc) · 1.84 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
<html>
<head>
<title>Angular 2 SPA boilerplate</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="node_modules/bulma/css/bulma.css" />
<!-- 1. Load libraries -->
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/@angular/core/bundles/core.umd.js"></script>
<script src="node_modules/@angular/common/bundles/common.umd.js"></script>
<script src="node_modules/@angular/compiler/bundles/compiler.umd.js"></script>
<script src="node_modules/@angular/forms/bundles/forms.umd.js"></script>
<script src="node_modules/@angular/http/bundles/http.umd.js"></script>
<script src="node_modules/@angular/router/bundles/router.umd.js"></script>
<script src="node_modules/@angular/platform-browser/bundles/platform-browser.umd.js"></script>
<script src="node_modules/@angular/platform-browser-dynamic/bundles/platform-browser-dynamic.umd.js"></script>
<!-- 2. Load our "services and utils first" -->
<script src="app/utils/pipes.js"></script>
<script src="app/ajax/ajax.service.js"></script>
<!-- 3. Load our "modules" -->
<script src="app/home/home.js"></script>
<script src="app/files/files.js"></script>
<script src="app/components/components.js"></script>
<script src="app/navigation/navigation.js"></script>
<script src="app/ajax/ajax.js"></script>
<script src="app/app.js"></script>
<script src="app/app.module.js"></script>
<script src="app/main.js"></script>
</head>
<!-- 3. Display the application -->
<body>
<app>Loading...</app>
</body>
</html>