-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
167 lines (154 loc) · 5.71 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
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta
name="description"
content="A simple, elegant website where you can take a deep look at the latest movies and TV shows."
/>
<meta name="keywords" content="movies, tmdb, search movies" />
<link rel="stylesheet" href="styles.css" />
<title>Find Movies</title>
</head>
<body>
<header class="bg-primary">
<div class="container">
<h1 class="logo text-white">
Find<span class="text-dark">Movies</span>
</h1>
<form action="" id="search-form">
<div id="search-bar-container">
<input
id="search-bar"
type="text"
placeholder="Start with a '/s ' to search for shows"
/>
<i class="fas fa-search" id="search-icon"></i>
</div>
<input type="submit" hidden />
</form>
</div>
</header>
<main class="bg-dark">
<div class="container" id="results-container">
<div class="results-section" id="search-results-section">
<div class="subheading">Search results</div>
<div
class="loading-circle-container text-primary hidden-loading-circle"
id="search-loading"
>
<i class="fas fa-spinner"></i>
</div>
<div class="pagination-component">
<div class="pages-container" id="search-results"></div>
<div class="pagination-controls">
<button class="prev-page text-dark" aria-label="previous page">
<
</button>
<p class="page-tracker text-underline text-white">0</p>
<button class="next-page text-dark" aria-label="next page">
>
</button>
</div>
</div>
</div>
<div class="results-section">
<div class="subheading">
<p>Trending Movies</p>
<select name="timeline" id="trending-movies-timeline">
<option value="today">Today</option>
<option value="week">This week</option>
</select>
</div>
<div
class="loading-circle-container text-primary hidden-loading-circle"
id="trending-movies-loading"
>
<i class="fas fa-spinner"></i>
</div>
<div class="pagination-component">
<div class="pages-container" id="trending-movies"></div>
<div class="pagination-controls">
<button class="prev-page text-dark" aria-label="previous page">
<
</button>
<p class="page-tracker text-underline text-white">0</p>
<button class="next-page text-dark" aria-label="next page">
>
</button>
</div>
</div>
</div>
<div class="results-section">
<div class="subheading">
<p>Trending Shows</p>
<select name="timeline" id="trending-shows-timeline">
<option value="today">Today</option>
<option value="week">This week</option>
</select>
</div>
<div
class="loading-circle-container text-primary hidden-loading-circle"
id="trending-shows-loading"
>
<i class="fas fa-spinner"></i>
</div>
<div class="pagination-component">
<div class="pages-container" id="trending-shows"></div>
<div class="pagination-controls">
<button class="prev-page text-dark" aria-label="previous page">
<
</button>
<p class="page-tracker text-underline text-white">0</p>
<button class="next-page text-dark" aria-label="next page">
>
</button>
</div>
</div>
</div>
</div>
</main>
<footer class="bg-primary">
<div class="container">
<a href="https://github.com/sarimwastaken/findmovies-app">Github</a>
<a href="https://twitter.com/webdevsarim">Twitter</a>
<a href="https://www.linkedin.com/in/webdevsarim/">LinkedIn</a>
<a href="https://www.fiverr.com/devsarim">Fiverr</a>
</div>
</footer>
<div class="result-popout-container hidden">
<div class="overlay"></div>
<div class="result-popout bg-primary">
<img class="result-poster" src="" alt="" />
<section class="result-info">
<h3 class="text-white result-title">
Spider-Man: No Way Home <span class="text-dark">2021</span>
</h3>
<p class="text-dark result-rating">
8.1/10 <i class="fas fa-star text-yellow"></i>
</p>
<p class="result-overview text-white">
Peter Parker is unmasked and no longer able to separate his normal
life from the high-stakes of being a super-hero. When he asks for
help from Doctor Strange the stakes become even more dangerous,
forcing him to discover what it truly means to be Spider-Man.
</p>
<ul class="genres">
<li><a href="#" class="genre">Action</a></li>
<li><a href="#" class="genre">Science Fiction</a></li>
<li><a href="#" class="genre">Adventure</a></li>
</ul>
</section>
</div>
</div>
<script
src="https://kit.fontawesome.com/ec986fecb8.js"
crossorigin="anonymous"
defer
></script>
<script src="swiped-events.js"></script>
<script src="main.js"></script>
</body>
</html>