-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (26 loc) · 1.38 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Store App</title>
<link type="text/css" rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.css">
<link type="text/css" rel="stylesheet" href="assets/css/styles.css">
<link href='https://fonts.googleapis.com/css?family=Luckiest+Guy' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lato:300,700' rel='stylesheet' type='text/css'>
</head>
<body ng-app="myApp">
<div>
<ng-view></ng-view>
</div>
<script src="http://code.jquery.com/jquery-1.12.0.min.js"></script>
<script src="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.9/angular.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/angular.js/1.4.9/angular-route.js"></script>
<script type="text/javascript" src="assets/js/app.js"></script>
<script type="text/javascript" src="assets/js/storeCtrl.js"></script>
<script type="text/javascript" src="assets/js/nameCtrl.js"></script>
<script type="text/javascript" src="assets/js/detailCtrl.js"></script>
<script type="text/javascript" src="assets/js/create.js"></script>
<script type="text/javascript" src="assets/js/cartCtrl.js"></script>
</body>
</html>