-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (25 loc) · 1.44 KB
/
index.html
File metadata and controls
33 lines (25 loc) · 1.44 KB
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 ng-app="app">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<title>Prototype edition</title>
<link rel="stylesheet" href="styles/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="styles/bootstrap-theme.css" type="text/css" />
<link rel="stylesheet" href="styles/font-awesome/font-awesome.min.css" type="text/css" />
<link rel="stylesheet" href="app/common/styles.css" type="text/css" />
<link rel="stylesheet" href="app/main/main.css" type="text/css" />
</head>
<body>
<div ui-view></div>
<script src="scripts/jquery/jquery-2.0.3.min.js" type="text/javascript"></script>
<script src="scripts/angular/angular.min.js" type="text/javascript"></script>
<script src="scripts/angular/angular-animate.min.js" type="text/javascript"></script>
<script src="scripts/angular/angular-route.min.js" type="text/javascript"></script>
<script src="scripts/angular/angular-sanitize.min.js" type="text/javascript"></script>
<script src="scripts/bootstrap/bootstrap.min.js" type="text/javascript"></script>
<script src="scripts/fastClick.js" type="text/javascript"></script>
<script src="scripts/angular-ui-router.js" type="text/javascript"></script>
<script src="app/app.js" type="text/javascript"></script>
<script src="app/common/routes.js" type="text/javascript"></script>
</body>
</html>