-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·114 lines (106 loc) · 4.23 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
<!DOCTYPE html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title></title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="static/css/reset.css">
<link rel="stylesheet" href="static/css/style.css">
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">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 id="stage">
<hr/>
<div id="controls">
<div id="left">
<span>Go Back</span>
<button id="lb"></button>
</div>
<div id="center">
<div id="up">
<button></button>
<span>Like</span>
</div>
<div id="down">
<button></button>
<span>Down</span>
</div>
</div>
<div id="right">
<span>Skip</span>
<button id="rb"></button>
</div>
</div>
<div id="carousel">
{{CAROSEL.HTML GOES HERE}}
</div>
<div id="done">
Press <button id="scrollToDash">Enter</button> To See Your Matches
</div>
</div>
<div id="dashboard">
<hr/>
<header id="banner">
<button id="scrollToStage">Rate more movies</button>
<div id="r">
<button id="user"></button>
<button id="search"></button>
</div>
</header>
<aside>
<header id="t">People who share your taste in movies</header>
<section class="sidebar" id="critics">
<header>Critics</header>
<div>
<div class="circle">85%</div>
<hgroup>
<h2>Roger Ebert</h2>
<h3>The New York Times</h3>
</hgroup>
</div>
</section>
<section class="sidebar" id="community">
<header>In The Community</header>
<div>
<div class="circle">85%</div>
<hgroup>
<h2>Roger Ebert</h2>
<h3>The New York Times</h3>
</hgroup>
</div>
<div id="selected">
<div class="circle">85%</div>
<hgroup>
<h2>Roger Ebert</h2>
<h3>The New York Times</h3>
</hgroup>
</div>
<div>
<div class="circle">85%</div>
<hgroup>
<h2>Roger Ebert</h2>
<h3>The New York Times</h3>
</hgroup>
</div>
</section>
</aside>
<section id="main">
{{CRITIC.HTML GOES HERE}}
</section>
</div>
<script src="https://code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="https://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<script src="static/js/plugins.js"></script>
<script src="static/js/vendor/hotkeys.js"></script>
<script src="static/js/jquery-scrollto.js"></script>
<script src="static/js/main.js"></script>
</body>
</html>