-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (65 loc) · 2.61 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>Twitch App</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Lobster+Two|Yantramanav" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div id="root" class="container ">
<!-- header -->
<div class="row justify-content-center">
<div class="col-md-8 col-lg-6">
<h1 class="text-center">Twitch App</i></h1>
</div>
</div>
<!-- user list -->
<div class="row justify-content-center">
<div class="main col-md-8 col-lg-6">
<a id="template" target="_blank" href="#" class="d-none list-group-item list-group-item-action flex-column align-items-start">
<div class="media">
<img id="logo" class="mr-3" src="" alt="user icon">
<div class="media-body">
<div class="d-flex w-100 justify-content-between">
<h5 id="name" class="mb-1">name</h5>
<small id="status">status</small>
</div>
<p id="details" class="mb-1">details</p>
<small>click to see the channel...</small>
</div>
</div>
</a>
<div id="userList" class="list-group">
</div>
</div>
</div>
<!-- footer -->
<div class="row justify-content-center text-center">
<div class="col-md-8 col-lg-6">
<footer>
<p>
coded by
<a target="_blank" href="https://github.com/thebeastbelow">enes gonultas</a><br>
using
<a target="_blank" href="http://getbootstrap.com/">bootstrap</a> and
<a target="_blank" href="http://jquery.com/">jquery</a>
</p>
<p>
background image by
<a target="_blank" href="https://www.toptal.com/designers/subtlepatterns/playstation/">aslan zamanloo</a>
</p>
<p>
see source on
<a target="_blank" href="https://github.com/thebeastbelow/fcc-twitchapp">github</a>
</p>
</footer>
</div>
</div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="js/script.js"></script>
</body>
</html>