-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
61 lines (52 loc) · 2.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
<!DOCTYPE html>
<html>
<head>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="css/materialize.min.css" media="screen,projection"/>
<link rel="stylesheet" type="text/css" href="css/main.css">
<title>Netflix by Category</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<link rel="icon" href="favicon.ico">
</head>
<body>
<nav role="navigation">
<div class="nav-wrapper container"><a id="logo-container" href="/" class="brand-logo">Netflix by Category</a></div>
</nav>
<div class="section no-pad-bot" id="index-banner">
<div class="container">
<div class="row">
<div class="col s12">
<p>
Not sure where to start on Netflix? Use the box below to filter through the categories.
<br><br>Below are the main categories and some subcategories. If you would like to see ALL of the categories, click <a href="#" data-featherlight="#allMovies" class="btnPop">here.</a>
</p>
</div>
</div>
<div class="row">
<div class="col s12">
<input value="" id="search" type="text" placeholder="Start typing a category name to filter...">
</div>
</div>
</div>
</div>
<div class="container">
<div class="section">
<ul class="collection" id="cont"></ul>
</div>
</div>
<footer class="page-footer">
<div class="footer-copyright">
<div class="container copyright-stuff">
A project by <a href="http://timw.co">Tim Whitacre</a> - <a href="https://github.com/twhitacre/netflix-categories">Source Code</a>
</div>
</div>
</footer>
<div class="allCont">
<div id="allMovies"><ul class="collection" id="cont2"></ul></div>
</div>
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/filter.js"></script>
<script src="js/featherlight.js"></script>
<script src="js/main.js"></script>
</body>
</html>