-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
22 lines (19 loc) · 825 Bytes
/
index.html
File metadata and controls
22 lines (19 loc) · 825 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<html ng-app="pizzaApp" strict-di>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>Pizza-App</title>
<link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet">
<script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>
<script src="app/app.js"></script>
<script src="app/controllers/baseCtrl.js"></script>
<script src="app/controllers/cartCtrl.js"></script>
<script src="app/controllers/orderCtrl.js"></script>
<script src="app/controllers/detailCtrl.js"></script>
<script src="app/services/cartService.js"></script>
<script src="app/services/pizzaService.js"></script>
</head>
<body>
<ion-nav-view></ion-nav-view>
</body>
</html>