-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
65 lines (60 loc) · 1.73 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
<!DOCTYPE html>
<html>
<head>
<title>Dining Hall Menu</title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, user-scalable=no" />
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-title" content="W4DD">
<link rel="apple-touch-icon" href="/dining.jpg">
</head>
<body>
<h2>Dining Hall Menu</h2>
<section>
<label>Date: <input type="text" id="date-picker"></label>
<br>
<br>
<div id="controls">
<button id="yesterday"><<</button>
<span id="dayofweek"></span>
<button id="tomorrow">>></button>
</div>
</section>
<br>
<br>
<section>
<div id="dininghall-picker">
Select:
<button id="wads" value="wads">Wadsworth</button>
<button id="mcnair" value="mcnair">McNair</button>
<button id="dhh" value="dhh">DHH</button>
</div>
</section>
<br>
<h2 id="heading"></h2>
<section>
<small class="loading">(shhh... we're still loading)</small>
<table class="menu" style="display: none">
<tr>
<th>Breakfast</th>
<th>Lunch</th>
<th>Dinner</th>
</tr>
</table>
<br>
<br>
</section>
<script
src="https://code.jquery.com/jquery-3.3.1.min.js"
integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8="
crossorigin="anonymous"></script>
<script
src="https://code.jquery.com/ui/1.12.1/jquery-ui.min.js"
integrity="sha256-VazP97ZCwtekAsvgPBSUwPFKdrwD3unUfSGVYrahUqU="
crossorigin="anonymous"></script>
<script type="text/javascript" src="script.js"></script>
</body>
</html>