-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (92 loc) · 2.84 KB
/
index.html
File metadata and controls
92 lines (92 loc) · 2.84 KB
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>findItNow UW</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.css" />
<link rel="stylesheet" href="r/finterface.css" />
<script src="http://code.jquery.com/jquery-1.5.2.min.js"></script>
<script src="http://code.jquery.com/mobile/1.0a4.1/jquery.mobile-1.0a4.1.min.js"></script>
<script src="r/addListeners.js"></script>
<script src="r/helperMethods.js"></script>
<script src="r/finSearch.js"></script>
<script src="http://maps.google.com/maps/api/js?sensor=false"></script> <style type="text/css">
.gmap { height:100%; width: 100%; margin: 0px; padding: 0px }
</style>
<style>
/* set some styles so there's no padding for the map */
.command-no-cache {padding:0px;}
/* make the active nav-tab button's text be black */
.ui-btn-active {
color:black;
font-weight: bold;
text-shadow: white 0px 1px 1px;
}
</style>
</head>
<body>
<div data-role="page" data-theme="a">
<div data-role="header">
<h1>FindItNow</h1>
<div data-role="navbar">
<ul>
<li><a href="index.html" class="ui-btn-active">Categories</a></li>
<li><a href="buildings.html">Buildings</a></li>
</ul>
</div><!-- /navbar -->
</div>
<div data-role="content" class="content-home">
<h2>Select a category</h2>
<ul data-role="listview" data-inset="true" data-split-theme="a" data-split-icon="arrow-r">
<li><a href="atms">
<img src="drawable/atms.png" />
<h1>ATMs</h1>
</a>
</li>
<li><a href="bike_racks">
<img src="drawable/bike_racks.png" style="margin-top: 10px" />
<h1>Bike Racks</h1>
</a>
</li>
<li><a href="coffee">
<img src="drawable/coffee.png" />
<h1>Coffee</h1>
</a>
</li>
<li><a href="dining">
<img src="drawable/dining.png" />
<h1>Dining</h1>
</a>
</li>
<li><a href="mailboxes">
<img src="drawable/mailboxes.png" />
<h1>Mailboxes</h1>
</a>
</li>
<li><a href="restrooms">
<img src="drawable/restrooms.png" />
<h1>Restrooms</h1>
</a>
</li>
<li><a href="school_supplies">
<img src="drawable/school_supplies.png" />
<h1>School Supplies</h1>
</a>
</li>
<li><a href="vending">
<img src="drawable/vending.png" />
<h1>Vending</h1>
</a>
</li>
</ul>
<!--
<div data-role="fieldcontain">
<input type="search" id="search" value="Search not implemented yet" data-theme="c" />
</div>-->
</div>
<div data-role="footer">
<h4>Project FIN <img src="drawable/icon_with_stroke.png" style="height:30px;vertical-align:middle;line-height:30px" /></h4>
</div>
</div>
</body>
</html>