forked from angular/angular-seed
-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathindex.html
More file actions
executable file
·24 lines (23 loc) · 831 Bytes
/
index.html
File metadata and controls
executable file
·24 lines (23 loc) · 831 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
<!doctype html>
<html lang="en" ng-app="application">
<head>
<meta charset="utf-8">
<title>Angular Sprout</title>
<link rel="stylesheet" href="styles/application.css"/>
</head>
<body>
<nav>
<ng-include src="'templates/menu-template.html'"/>
</nav>
<div ng-view/></div>
<script src="libraries/angular.js"></script>
<script src="libraries/angular-route.js"></script>
<script src="application.js"></script>
<script src="constants/configuration-constants.js"></script>
<script src="services/menu-service.js"></script>
<script src="controllers/details-controller.js"></script>
<script src="controllers/menu-controller.js"></script>
<script src="directives/menu-item-directive.js"></script>
<script src="filters/to-date-string-filter.js"></script>
</body>
</html>