-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
64 lines (64 loc) · 2.26 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel='icon' href='./assets/img/favicon.ico' type='image/x-icon'/>
<title>Track TV 📺</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css">
<link href="https://fonts.googleapis.com/css?family=Didact+Gothic|Open+Sans&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./assets/css/style.css">
</head>
<body>
<section class="hero">
<div class="hero-body">
<div class="container">
<h1 class="title">
<a href="index.html">Track TV</a>
</h1>
</div>
<img class="hero-background" src="./assets/img/tvshows.jpg" />
</div>
</section>
<section class="section">
<div class="container">
<div class="columns">
<div class="column is-two-thirds">
<div class="control">
<input class="input is-hovered column" id="searchInput" type="text" placeholder="Search for Television Shows">
<button class="button" id="searchSubmit">Search</button>
<br /><br />
</div>
<div id="tvColumn"></div>
</div>
<div class="column is-one-third">
<div id="youtube_wrapper">
<h2 class="is-size-4 tracking_title youtube_title"></h2>
<div class="card" id="youtube_embed">
<div class="card-image">
<iframe src="" width="100%" height="250px"></iframe>
</div>
<div class="card-content">
<p id="youtube_description"><p>
</div>
</div>
</div>
<h2 class="is-size-4 tracking_title">My Tracked Shows</h2>
<div class="notification" id="tracking_side"></div>
</div>
</div>
</div>
</section>
<footer class="footer">
<div class="content has-text-centered">
<p>
<i class="icon icon-github"></i><a href="https://github.com/yankidank/TV-Tracker">Github</a>
</p>
</div>
</footer>
</body>
<script src="https://code.jquery.com/jquery-3.4.1.min.js" integrity="sha256-CSXorXvZcTkaix6Yvo6HppcZGetbYMGWSFlBw8HfCJo=" crossorigin="anonymous"></script>
<script src='https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.5/jquery-ui.min.js'></script>
<script src="./assets/js/moment.js"></script>
<script src="./assets/js/script.js"></script>
</html>