-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (57 loc) · 4.08 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
<!doctype html>
<html ng-app="myApp" ng-controller="MainController">
<head>
<title>ClassLens</title>
<script src="node_modules/angular/angular.js"></script>
<script src="node_modules/angular-route/angular-route.js"></script>
<script src="node_modules/angular-resource/angular-resource.js"></script>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/tether/dist/js/tether.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<link rel="stylesheet" type="text/css" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
<script src="node_modules/angularjs-slider/dist/rzslider.min.js"></script>
<link rel="stylesheet" type="text/css" href="node_modules/angularjs-slider/dist/rzslider.css"/>
<script src="node_modules/ng-tags-input/build/ng-tags-input.js"></script>
<link rel="stylesheet" type="text/css" href="node_modules/ng-tags-input/build/ng-tags-input.css">
<script src="node_modules/chart.js/dist/Chart.min.js"></script>
<script src="node_modules/angular-chart.js/dist/angular-chart.min.js"></script>
<script src="//angular-ui.github.io/bootstrap/ui-bootstrap-tpls-2.1.3.js"></script>
<script src="https://d3js.org/d3.v3.min.js"></script>
<script src="node_modules/d3-tip/index.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/4.2.2/d3.min.js"></script>
<script src="remoteService.js"></script>
<script src="mainController.js"></script>
<link rel="stylesheet" type="text/css" href="main.css" />
<script src="components/header/headerController.js"></script>
<link rel="stylesheet" type="text/css" href="components/header/header.css" />
<script src="components/explore/exploreController.js"></script>
<link rel="stylesheet" type="text/css" href="components/explore/explore.css" />
<script src="components/class/classController.js"></script>
<link rel="stylesheet" type="text/css" href="components/class/class.css" />
<script src="components/bookmarks/bookmarksController.js"></script>
<link rel="stylesheet" type="text/css" href="components/bookmarks/bookmarks.css" />
<script src="components/review/reviewController.js"></script>
<link rel="stylesheet" type="text/css" href="components/review/review.css" />
<script src="components/review-class/reviewClassController.js"></script>
<link rel="stylesheet" type="text/css" href="components/review-class/review-class.css" />
<script src="components/teacher-home/teacherHomeController.js"></script>
<link rel="stylesheet" type="text/css" href="components/teacher-home/teacher-home.css" />
<script src="components/teacher-class/teacherClassController.js"></script>
<link rel="stylesheet" type="text/css" href="components/teacher-class/teacher-class.css" />
<script src="components/edit-form/editFormController.js"></script>
<link rel="stylesheet" type="text/css" href="components/edit-form/edit-form.css" />
<script src="components/pinned-feedback/pinnedFeedbackController.js"></script>
<link rel="stylesheet" type="text/css" href="components/pinned-feedback/pinned-feedback.css" />
<script src="components/login/loginController.js"></script>
<link rel="stylesheet" type="text/css" href="components/login/login.css" />
<script src="components/my-reviews/myReviewsController.js"></script>
<link rel="stylesheet" type="text/css" href="components/my-reviews/my-reviews.css" />
<script src="components/profile/profileController.js"></script>
<link rel="stylesheet" type="text/css" href="components/profile/profile.css" />
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
</head>
<body>
<div ng-if="main.displayHeader == true" ng-include="'components/header/header-template.html'" ng-controller="HeaderController"></div>
<div ng-view></div>
</body>
</html>