-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (53 loc) · 2.49 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html data-ng-app="todoApp" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>2Do App</title>
<!-- Bootstrap CSS-->
<link rel="stylesheet" href="./css/bootstrap-3.3.5.min.css" media="screen" title="no title" charset="utf-8">
<link rel="stylesheet" href="./css/font-awesome.min.css" media="screen" title="no title" charset="utf-8">
<!-- Main CSS -->
<link rel="stylesheet" href="./css/main.css" media="screen" title="no title" charset="utf-8">
</head>
<body>
<!-- Header -->
<header ng-controller="navigationController" class="header header--nav">
<div class="container">
<div class="row row-vertical-align">
<div class="col-xs-3">
<!-- ng-hide to hide the back button when we are on home page because there is no need for a back button -->
<a ng-click="back();" ng-hide="location.path() === '/'" class="btn btn-default">Back</a>
</div>
<div class="col-xs-6 text-center">
<span class="header__heading h1">2 Do</span>
</div>
</div>
</div>
</header>
<!-- controllers will have a pageClass attribute to give each a specific animations when showing/hiding -->
<div class="page {{ pageClass }}" ng-view>
</div>
<!-- 3rd Party Scripts -->
<!-- Angular -->
<script src="./js/angular.min.js" charset="utf-8"></script>
<!-- Angular Route -->
<script src="./js/angular-route.js" charset="utf-8"></script>
<!-- Angular Animate -->
<script src="./js/angular-animate.1.5.7.min.js" charset="utf-8"></script>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="./js/jquery.1.11.3.min.js" charset="utf-8"></script>
<!-- Bootstrap -->
<script src="./js/bootstrap.3.3.5.min.js" charset"utf-8"></script>
<!-- Custom Scripts -->
<!-- Todo Module -->
<script src="./modules/todo.module.js" charset="utf-8"></script>
<!-- Model -->
<script src="./modules/services/todoService.factory.js" charset="utf-8"></script>
<!-- Controllers -->
<script src="./modules/controllers/home.controller.js" charset="utf-8"></script>
<script src="./modules/controllers/edit.controller.js" charset="utf-8"></script>
<script src="./modules/controllers/navigation.controller.js" charset="utf-8"></script>
</body>
</html>