-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
152 lines (127 loc) · 4.25 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
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
<!DOCTYPE html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>TEST</title>
<!--[if (gt IE 8) | (IEMobile)]><!-->
<link rel="stylesheet" href="./assets/stylesheets/unsemantic-grid-responsive.css" />
<!--<![endif]-->
<!--[if (lt IE 9) & (!IEMobile)]>
<link rel="stylesheet" href="./assets/stylesheets/ie.css?1389034275" />
<![endif]-->
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="apple-touch-icon" href="apple-touch-icon.png">
<!-- Place favicon.ico in the root directory -->
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="./assets/stylesheets/rangeslider.css">
<link rel="stylesheet" type="text/css" href="./assets/stylesheets/jquery.modal.css">
<link rel="stylesheet" type="text/css" href="./assets/stylesheets/styles.css">
<!--[if lt IE 9]>
<script src="./assets/javascripts/html5.js"></script>
<![endif]-->
</head>
<body>
<label for="show-menu" class="show-menu"><span>☰</span></label>
<input type="checkbox" id="show-menu" role="button">
<!-- TOPMENU -->
<header class="grid-container clearfix">
<nav id="topmenu">
<ul id="tmenu">
<li><a href="#">Home</a></li>
<li>
<a href="#">About</a>
<ul class="hidden">
<li><a href="#">Who We Are</a></li><li><a href="#">What We Do</a></li>
</ul>
</li>
<li>
<a href="#">Features</a>
<ul class="hidden">
<li><a href="#">Sub item 1</a></li><li><a href="#">Sub item 2</a></li><li><a href="#">Sub item 3</a></li>
</ul>
</li>
<li><a href="#">Testimonials</a></li><li><a href="#">Contact</a></li>
</ul>
</nav>
</header>
<div class="clear"></div>
<!-- TOPBAR -->
<div id="topbar">
<h3 class="center-text">Find trainers to match your needs</h3>
</div>
<!-- CONTENT -->
<main class="grid-container clearfix">
<div class="grid-100 mobile-grid-100">
<section id="resultinfo">
<h3>SEARCH</h3> <span class="inlinebullet">•</span> <span id="resultcount">35 Coaches</span> match your search
</section>
</div>
<div style="float: right;" class="grid-30 mobile-grid-100">
<section>
<div>
<aside id="sidebar" class="toggled">
<span class="toggle hide-on-desktop"></span>
<!-- PRICE SLIDER -->
<h4>Max price/hour</h4>
<div id="maxprice"></div>
<input id="maxpriceslider" type="range"
min="0"
max="100"
step="1"
value="50"
data-orientation="horizontal">
<br>
<h4>Location</h4>
<div id="location">
<div class="inputcontainer first">
<input class="location" type="checkbox" id="indoor">
<label for="indoor"><span>Indoor</span></label>
</div>
<div class="inputcontainer last">
<input class="location" type="checkbox" id="outdoor">
<label for="outdoor"><span>Outdoor</span></label>
</div>
</div>
<br>
<hr>
<h4>Sport types</h4>
<!-- CONTAINER FOR SPORT TYPES -->
<div id="disciplinecontainer">
</div>
</aside>
</div>
</section>
</div>
<div class="grid-70 mobile-grid-100" id="outercontainer">
<div class="grid-50 mobile-grid-100 resultbox">
<section>
</section>
</div>
</div>
</main>
<!-- FOOTER -->
<section>
<footer class="footer">
<div class="center-block">
<ul>
<li><a href="#">Overview</a></li>
<li><a href="#">Privacy Policy</a></li>
<li><a href="#">Cookie policy</a></li>
<li><a href="#">Terms</a></li>
</ul>
</div>
<p class="center-text">
2016 company name. All rights reserved
</p>
</footer>
</section>
<script src="./assets/javascripts/jquery.js"></script>
<script src="./assets/javascripts/sticky.js"></script>
<script src="./assets/javascripts/rangeslider.js"></script>
<script src="./assets/javascripts/jquery.lazyload-any.min.js"></script>
<script src="./assets/javascripts/jquery.modal.js"></script>
<script src="./assets/javascripts/main.js"></script>
</body>
</html>