-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwwu.html
More file actions
74 lines (74 loc) · 2.49 KB
/
wwu.html
File metadata and controls
74 lines (74 loc) · 2.49 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
<!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-wwu.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>
</head>
<body>
<div data-role="page" data-theme="a">
<div data-role="header">
<h1>FindItNow</h1>
</div>
<div data-role="content">
<h2 style="text-align:center">Select a category</h2>
<ul data-role="listview" data-inset="true" data-split-theme="a" data-split-icon="arrow-r">
<li><a href="coffee">
<img src="drawable/coffee.png" height="60" />
<h1 style="valign:middle">Coffee</h1>
</a>
</li>
<li><a href="vending">
<img src="drawable/vending.png" height="60" />
<h1>Vending</h1>
</a>
</li>
<li><a href="dining">
<img src="drawable/dining.png" height="60" />
<h1>Dining</h1>
</a>
</li>
<li><a href="mailboxes">
<img src="drawable/mailboxes.png" height="60" />
<h1>Mailboxes</h1>
</a>
</li>
<li><a href="school_supplies">
<img src="drawable/school_supplies.png" height="60" />
<h1>Not working-School Supplies</h1>
</a>
</li>
<li><a href="restrooms">
<img src="drawable/restrooms.png" height="60" />
<h1>Restrooms</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>
<div data-role="page" id="dashboard">
<div data-role="header">
<h1>Placemarks</h1>
</div>
<div data-role="content">
<ul id="wikiList" data-role="listview" data-theme="c">
</ul>
</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>