This repository has been archived by the owner on Jul 22, 2020. It is now read-only.
forked from dangconnie/movie-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
113 lines (103 loc) · 4.81 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
<!DOCTYPE html>
<html>
<head>
<title>Movie App</title>
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap-theme.min.css">
<!-- CUSTOM STYLES -->
<link rel="stylesheet" type="text/css" href="CSS/styles.css">
<!-- Google Fonts -->
<link href="https://fonts.googleapis.com/css?family=Carrois+Gothic+SC" rel="stylesheet">
<!-- JQUERY -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!-- CUSTOM JS -->
<script type="text/javascript" src="JS/config.js"></script>
<script type="text/javascript" src="JS/scripts.js"></script>
</head>
<body>
<!-- -->
<!-- Navbar -->
<!-- -->
<nav class="navbar navbar-inverse">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">Popcorn Bits Cinemas</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="#" class="nowPlaying">Now Playing</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Genres<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#" class="action" id="action">Action</a></li>
<li><a href="#" class="adventure" id="adventure">Adventure</a></li>
<li><a href="#" class="animation" id="animation">Animation</a></li>
<li><a href="#" class="comedy" id="comedy">Comedy</a></li>
<li><a href="#" class="crime" id="crime">Crime</a></li>
<li><a href="#" class="drama" id="drama">Drama</a></li>
<li><a href="#" class="family" id="family">Family</a></li>
<li><a href="#" class="fantasy" id="fantasy">Fantasy</a></li>
<li><a href="#" class="history" id="history">History</a></li>
<li><a href="#" class="music" id="music">Music</a></li>
<li><a href="#" class="romance" id="romance">Romance</a></li>
<li><a href="#" class="scifi" id="scifi">Science Fiction</a></li>
<li><a href="#" class="thriller" id="thriller">Thriller</a></li>
</ul>
</li>
<li class="gitHubLogo">
<a href="https://github.com/dangconnie/movie-app" target="_blank">GitHub Repo</a>
</li>
<!-- <li><a href="#">Specials</a></li> -->
<!-- <li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Extras <span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">VIP Rewards Card</a></li>
<li><a href="#">Specials and Promotions</a></li>
<li><a href="#">Gift Cards</a></li>
</ul>
</li> -->
<!-- <li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">Locations<span class="caret"></span></a>
<ul class="dropdown-menu">
<li><a href="#">Atlanta</a></li>
<li><a href="#">Buckhead</a></li>
<li><a href="#">Midtown</a></li>
<li><a href="#">Marietta</a></li>
</ul>
</li> -->
</ul>
<ul class="nav navbar-nav navbar-right">
<form class="navbar-form navbar-right searchForm">
<div class="form-group">
<input type="text" class="form-control" placeholder="Search movies">
</div>
<button type="submit" class="btn btn-default">Submit</button>
</form>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- Displaying the movies -->
<div class="container">
<div class="row">
<div class="genreLabel"><h1 id="movieGenreLabel"></h1></div>
<!-- I need the h1 to change accordingly depending on what was clicked. -->
<div id="movie-grid">
<!-- Jquery get us the movie posters! Need a place to put the poster images -->
</div>
</div>
</div>
</body>
</html>