-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtvmaze.html
More file actions
34 lines (27 loc) · 748 Bytes
/
tvmaze.html
File metadata and controls
34 lines (27 loc) · 748 Bytes
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
<!doctype html>
<html>
<head>
<title>TV Maze</title>
<link rel="stylesheet"
href="https://unpkg.com/bootstrap/dist/css/bootstrap.css">
</head>
<body>
<div class="container">
<h1>TV Maze</h1>
<form class="form-inline" id="search-form">
<input class="form-control" id="search-query" value="bletchley">
<button class="btn btn-primary" type="submit">Go!</button>
</form>
<div class="row mt-3" id="shows-list">
</div>
<section style="display: none" id="episodes-area">
<h2>Episodes</h2>
<ul id="episodes-list">
</ul>
</section>
<script src="http://unpkg.com/jquery"></script>
<script src="http://unpkg.com/axios/dist/axios.js"></script>
<script src="tvmaze.js"></script>
</div>
</body>
</html>