-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (45 loc) · 1.86 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
<!DOCTYPE html>
<html ng-app="videoapp">
<head>
<title>Fictícia Videos</title>
<link href="../lib/bootstrap-3.3.7/css/bootstrap.min.css" rel="stylesheet">
<link href="../style/css/headerFooter.css" rel="stylesheet" />
<link href="../style/css/home.css" rel="stylesheet" />
<link href="../style/css/modal.css" rel="stylesheet" />
<link href="../style/css/index.css" rel="stylesheet" />
<link href="../style/css/error.css" rel="stylesheet" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body ng-controller="indexController">
<!--**** SPA structure ****-->
<!--header-->
<header>
<div ng-include="'view/header.html'"></div>
</header>
<!--content-->
<content>
<div ng-view></div>
<div ng-include="'view/videoModal.html'"></div> <!-- Modal : Watch selected video -->
</content>
<footer>
<div ng-include="'view/footer.html'"></div>
</footer>
<!--**** IMPORTS ****-->
<!-- Libraries -->
<script src="../lib/jquery-3.2.0.min.js"></script>
<script src="../lib/bootstrap-3.3.7/js/bootstrap.min.js"></script>
<script src="../lib/angular.min.js"></script>
<script src="../lib/angular-route.min.js" type="text/javascript"></script>
<!-- Controllers -->
<script src="../js/app.js"></script>
<script src="js/controllers/indexController.js"></script>
<script src="js/controllers/homeController.js"></script>
<script src="js/controllers/allVideosController.js"></script>
<script src="js/controllers/highlightedVideoController.js"></script>
<!-- Services -->
<script src="js/services/youtubeVideoService.js"></script>
<script src="js/services/columnOrganizatorService.js"></script>
<!-- SPA Routing config -->
<script src="../js/config/routeConfig.js" type="text/javascript"></script>
</body>
</html>