-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (27 loc) · 951 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (27 loc) · 951 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 ng-app='MenuApp'>
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="style/styles.css">
<link rel="stylesheet" href="style/bootstrap.min.css">
<title>Module 4 assignment</title>
</head>
<body>
<!-- Page Views -->
<ui-view></ui-view>
<!-- angular Libraries -->
<script src="lib/angular.min.js"></script>
<script src="lib/angular-ui-router.min.js"></script>
<!-- Modules -->
<script src="js/menuapp.module.js"></script>
<script src="js/data.module.js"></script>
<!-- component and controller -->
<script src="js/main-categories.controller.js"></script>
<script src="js/item-categories.controller.js"></script>
<script src="js/categories.component.js"></script>
<script src="js/items.component.js"></script>
<script src="js/menudata.service.js"></script>
<!-- Route JS file -->
<script src="js/routes.js"></script>
</body>
</html>