This repository has been archived by the owner on Dec 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
44 lines (36 loc) · 1.8 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>AngularJS playground</title>
<meta name="description" content="AngularJS playground for rapid prototyping">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/3.0.1/normalize.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.5.0/pure-min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/pure/0.5.0/grids-responsive-min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<header ui-view="header" class="header"></header>
<div ui-view class="content" />
</div>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.0/angular.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.0/angular-messages.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/angular-ui-router/0.2.11/angular-ui-router.min.js"></script>
<script src="app/app.js"></script>
<script src="app/common/interceptors/httpInterceptor.js"></script>
<script src="app/common/services/dataService.js"></script>
<script src="app/common/services/utils.js"></script>
<script src="app/common/services/eventBus.js"></script>
<script src="app/common/directives/version.js"></script>
<script src="app/common/directives/percentage.js"></script>
<script src="app/common/directives/rating.js"></script>
<script src="app/common/directives/uniqueEmailValidator.js"></script>
<script src="app/common/filters/uppercase.js"></script>
<script src="app/common/header.js"></script>
<script src="app/home/home.js"></script>
<script src="app/miscellaneous/miscellaneous.js"></script>
</body>
</html>