-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
executable file
·154 lines (94 loc) · 4.64 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
<!--
Author:-Rahul Rana
->Contact in case of any code related problem
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Edtech Learning</title>
<link rel="stylesheet" href="">
<script type="text/javascript" src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<!-- Standard Scripts-->
<script type="text/javascript" src="js/angular.js" ></script>
<script type="text/javascript" src="js/angular-loader.min.js" ></script>
<script type="text/javascript" src="js/angular-message-format.min.js" ></script>
<script type="text/javascript" src="js/angular-messages.min.js" ></script>
<script type="text/javascript" src="js/angular-parse-ext.min.js" ></script>
<script type="text/javascript" src="js/angular-resource.min.js" ></script>
<script type="text/javascript" src="js/angular-scenario.js" ></script>
<script type="text/javascript" src="js/angular-touch.min.js" ></script>
<script type="text/javascript" src="js/angular-ui-route.js" ></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.4/jquery.js"></script>
<script type="text/javascript" src="js/owl.carousel.min.js"></script>
<script type="text/javascript" src="js/bootstrap.js" ></script>
<!-- End of Standard scripts -->
<!-- -->
<!-- Custom Scripts-->
<script type="text/javascript" src="mvc/model/myApp.js" ></script>
<script type="text/javascript" src="mvc/services.js"></script>
<!-- End of Custom scripts -->
<!-- Standards Css Sheet-->
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="css/carousel.css">
<link rel="stylesheet" type="text/css" href="css/owl.carousel.css">
<link rel="stylesheet" type="text/css" href="css/owl.theme.css">
<!-- Compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/css/materialize.css">
<!-- Compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.98.2/js/materialize.min.js"></script>
<link rel="stylesheet" type="text/css" href="css/owl.transitions.css">
<!-- Ends Custom Sheet-->
<!-- Custom Css Sheet-->
<link rel="stylesheet" type="text/css" href="css/index.css">
<link rel="stylesheet" type="text/css" href="css/carousel.css"></link>
<link rel="stylesheet" type="text/css" href="css/product.css"></link>
<link rel="stylesheet" type="text/css" href="css/social.css">
<link rel="stylesheet" type="text/css" href="css/footer.css">
<link rel="stylesheet" type="text/css" href="css/men.css">
<!-- Ends Custom Sheet-->
</head>
<body ng-app="myApp">
<nav>
<div class="nav-wrapper">
<a href="#!" class="brand-logo right" >Edunia</a>
<ul class="left ">
<li><a ui-sref="home">Home</a></li>
<li><a ui-sref="myCourses">My Courses</a></li>
<li><a ui-sref="recomendedCourses">Recomended Courses</a></li>
<li><a ui-sref="profile">Profile</a></li>
<li><a ui-sref="explore">Explore</a></li>
<li><a class="active" ui-sref="scorecard">Scorecard</a></li>
</ul>
</div>
<a class="btn btn-floating pulse hide-on-med-and-up"><i class="material-icons"></i></a>
</nav>
<div ui-view>
</div>
</div>
<!-- Footer Starts-->
<div class="footer">
</div>
<!-- Footer-->
<script type="text/javascript" src="mvc/controller/indexController.js"></script>
<script type="text/javascript" src="mvc/controller/exploreController.js"></script>
<script type="text/javascript" src="mvc/controller/myCoursesController.js"></script>
<script type="text/javascript" src="mvc/controller/profileController.js"></script>
<script type="text/javascript" src="mvc/controller/recomendedCoursesController.js"></script>
<script type="text/javascript" src="mvc/controller/scorecardController.js"></script>
<script type="text/javascript" src="mvc/controller/loginController.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#owl-demo").owlCarousel({
items : 4,
lazyLoad : true,
navigation : true,
});
});
</script>
</body>
</html>