-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (32 loc) · 1.31 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
<!DOCTYPE html>
<html ng-app="app" lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>FlickFinder</title>
<link href="styles.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Josefin+Sans|Raleway" rel="stylesheet">
</head>
<body>
<div class="main-wrapper">
<div class="header">
<h1>FlickFinder<img src="projector.png"></h1>
</div>
<ng-view></ng-view>
</div>
<!--Script tags -->
<script src="https://code.angularjs.org/1.6.5/angular.js"></script>
<script src="https://code.angularjs.org/1.6.5/angular-route.js"></script>
<script src="module.js"></script>
<script src="movie-list-comp.js"></script>
<script src="search-criteria-comp.js"></script>
<script src="watchlist-page.js"></script>
<script src="service.js"></script>
<footer>
<p>All data and images attributed to <a href="http://www.themoviedb.org">TMDb</a></p>
<p>Icons made by <a href="https://www.flaticon.com/authors/smashicons" title="Smashicons">Smashicons
</a> from <a href="https://www.flaticon.com/" title="Flaticon">www.flaticon.com</a>
is licensed by <a href="http://creativecommons.org/licenses/by/3.0/"
title="Creative Commons BY 3.0" target="_blank">CC 3.0 BY</a></p>
</footer>
</body>
</html>