-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
58 lines (53 loc) · 2.16 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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7" lang="en"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8" lang="en"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9" lang="en"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js" lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Video Feed</title>
<meta name="description" content="A simple video feed">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="container">
<h1>Video Feed</h1>
<h2>Filter</h2>
<div class="filter row">
<div class="col-sm-4">
<p>Likes</p>
<div class="checkbox">
<label>
<input type="checkbox" name="above-ten-likes">
More than 10 likes
</label>
</div>
</div>
<div class="col-sm-4">
<p>Search in description</p>
<input type="text" name="search-in-desc" class="form-control" placeholder="Text...">
</div>
<div class="col-sm-4">
<p>Result per page</p>
<div class="btn-group" role="group" aria-label="...">
<button type="button" class="results-per-page btn btn-default active">10</button>
<button type="button" class="results-per-page btn btn-default">25</button>
<button type="button" class="results-per-page btn btn-default">50</button>
</div>
</div>
</div>
<h2>Results</h2>
<div class="videos"></div>
</div> <!-- end-container -->
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/lodash.min.js"></script>
<script src="js/main.js"></script>
</body>
</html>