-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (29 loc) · 908 Bytes
/
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
32
33
34
<!doctype html>
<html lang="en" data-framework="angularjs">
<head>
<meta charset="utf-8">
<link rel="stylesheet" href="css/base.css">
<link rel="stylesheet" href="css/index.css">
<!-- inject:css -->
<!-- endinject -->
<style>
[ng-cloak] {
display: none;
}
</style>
</head>
<body ng-app="appmvc">
<ng-view/>
<script src="node_modules/todomvc-common/base.js"></script>
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/angular-route/angular-route.js"></script>
<!-- inject:js -->
<script src="js/app.module.js"></script>
<script src="js/app.js"></script>
<script src="js/controllers/Todo.Controller.js"></script>
<script src="js/directives/Escape.Directive.js"></script>
<script src="js/directives/Focus.Directive.js"></script>
<script src="js/services/Storage.Service.js"></script>
<!-- endinject -->
</body>
</html>