-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
executable file
·42 lines (34 loc) · 1.78 KB
/
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
35
36
37
38
39
40
41
42
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="A front-end template that helps you build fast, modern mobile web apps.">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Book Store</title>
<!-- Page styles -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/materialize/0.96.1/css/materialize.min.css">
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/animate.css/3.2.6/animate.min.css">
<link rel="stylesheet" href="src/assets/css/app.css">
</head>
<body class="grey lighten-5">
<bookstore></bookstore>
<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/materialize/0.96.1/js/materialize.min.js"></script>
<script src="//code.angularjs.org/1.4.8/angular.js"></script>
<script src="//code.angularjs.org/1.4.8/angular-mocks.js"></script>
<script src="//code.angularjs.org/1.4.8/angular-route.js"></script>
<!-- Modules: common and book -->
<script src="src/modules/common/index.js"></script>
<script src="src/modules/book/index.js"></script>
<script src="src/index.js"></script>
<script src="src/routes.js"></script>
<script src="src/mocks.js"></script>
<script src="src/modules/common/nav/navcontroller.js"></script>
<script src="src/modules/common/bookstore/bookstoreDirective.js"></script>
<script src="src/modules/book/services/bookservice.js"></script>
<script src="src/modules/book/details/bookdetailscontroller.js"></script>
<script src="src/modules/book/add/bookaddcontroller.js"></script>
<script src="src/modules/book/list/booklistcontroller.js"></script>
</body>
</html>