-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (35 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Power Grid - Welcome</title>
<link rel="icon" type="image/png" href="Assets/images/favicon.png" />
<!--LIBS-->
<!--ICONS-->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons"
rel="stylesheet">
<!-- LODASH -->
<script src="node_modules/lodash/lodash.js"></script>
<!-- JQUERY -->
<script src="node_modules/jquery/dist/jquery.js"></script>
<!-- ANGULAR -->
<script src="node_modules/angular/angular.js"></script>
<!-- ANGULAR ROUTER/COMPONENT ROUTER -->
<!--<script src="https://unpkg.com/angular-route/angular-route.js"></script>-->
<script src="node_modules/angular-route/angular-route.min.js"></script>
<!-- ANGULAR COOKIES -->
<script src="node_modules/angular-cookies/angular-cookies.js"></script>
<!-- RX JS -->
<!--<script src="https://unpkg.com/rxjs/bundles/Rx.min.js"></script>-->
<script src="node_modules/rxjs/bundles/Rx.min.js"></script>
<script src="node_modules/angular1-async-filter/async-filter.js"></script>
<!--APP CODE-->
<link href="Dest/styles.css" rel="stylesheet">
<script src="Dest/scripts.js"></script>
<script src="Dest/templates.js"></script>
<base href="" />
</head>
<body ng-app="app">
<app></app>
</body>
</html>