-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.html
executable file
·109 lines (101 loc) · 4.52 KB
/
search.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
<!--
To change this template, choose Tools | Templates
and open the template in the editor.
-->
<!DOCTYPE html>
<html>
<head>
<title>SocialGEO - Search</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link type="text/css" href="_css/normalize.css" rel="stylesheet" media="all">
<link type="text/css" href="_css/main.css" rel="stylesheet" media="all">
<script src="_scripts/jquery-1.7.1.min.js" type="text/javascript" ></script>
<script src="_scripts/modernizr-2.0.6.js" type="text/javascript" ></script>
<script src="_scripts/jquery.masonry.min.js" type="text/javascript" ></script>
</head>
<body>
<div id="bodyContainer">
<header>
<nav>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a><div class="content"><p>This is a small about panel</p></div></li>
<li><a href="#">Team</a><div class="content"><p>This is a first introduction to the development team</p></div></li>
</ul>
</nav>
<nav id="loginNav">
<ul>
<li>
<a href="#">Login</a>
<div class="content" id="loginForm">
<form>
<input type="email" placeholder="email">
<input type="password" placeholder="Password">
<input type="submit" value="Login">
</form>
</div>
</li>
</ul>
</nav>
</header>
</header>
<aside id="sidebar">
<h4>Filter results:</h4>
<ul>
<li><input type="text" placeholder="location"></li>
<li><input type="text" placeholder="location"></li>
<li><input type="button" value="show map"></li>
<li><a class="button" href="" id="hidemapButton">Show map</a></li>
</ul>
</aside>
<div id="container">
<div id="map_canvas"></div>
<div id="eventsGrid">
<article>
<a href="">
<h3>the event Title</h3>
<img src="_assets/images/img1.jpg" alt="img1" title="img1">
</a>
</article><article>
<a href="">
<h3>the event Title</h3>
<img src="_assets/images/img1.jpg" alt="img1" title="img1">
</a>
</article><article>
<a href="">
<h3>the event Title</h3>
<img src="_assets/images/img1.jpg" alt="img1" title="img1">
</a>
</article><article>
<a href="">
<h3>the event Title</h3>
<img src="_assets/images/img1.jpg" alt="img1" title="img1">
</a>
</article><article>
<a href="">
<h3>the event Title</h3>
<img src="_assets/images/img1.jpg" alt="img1" title="img1">
</a>
</article><article>
<a href="">
<h3>the event Title</h3>
<img src="_assets/images/img1.jpg" alt="img1" title="img1">
</a>
</article><article>
<a href="">
<h3>the event Title</h3>
<img src="_assets/images/img1.jpg" alt="img1" title="img1">
</a>
</article><article>
<a href="">
<h3>the event Title</h3>
<img src="_assets/images/img1.jpg" alt="img1" title="img1">
</a>
</article>
</div>
</div>
</div>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&sensor=false"></script>
<script src="_scripts/main.js" type="text/javascript" ></script>
</body>
</html>