-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (25 loc) · 961 Bytes
/
index.html
File metadata and controls
32 lines (25 loc) · 961 Bytes
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
<!doctype html>
<html lang="en" ng-app="MenuApp">
<head>
<title>Menu Awesome App</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="styles/bootstrap.min.css">
<link rel="stylesheet" href="styles/styles.css">
</head>
<body>
<div class="container">
<h1>Welcome to our Restaurant</h1>
<ui-view></ui-view>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.5.8/angular.min.js"></script>
<script src="js/angular-ui-router.min.js"></script>
<script src="js/menuapp.module.js"></script>
<script src="js/data.module.js"></script>
<script src="js/routes.js"></script>
<script src="js/menudata.service.js"></script>
<script src="js/categories.component.js"></script>
<script src="js/categories.controller.js"></script>
<script src="js/items.controller.js"></script>
<script src="js/items.component.js"></script>
</body>
</html>