-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
32 lines (27 loc) · 1.18 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
<!DOCTYPE html>
<html>
<head>
<title>Food</title>
<link href="css/food.css" rel="stylesheet">
<script src="lib/moment.min.js" type="text/javascript"></script>
<script src="lib/jquery-3.3.1.min.js" type="text/javascript"></script>
<script src="build/food.js" type="text/javascript"></script>
<link rel="icon" type="image/png" href="/favicon/android-chrome-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/favicon/android-chrome-512x512.png" sizes="512x512">
<link rel="icon" type="image/png" href="/favicon/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/favicon/favicon-32x32.png" sizes="32x32">
</head>
<body>
<div class="controlPanel">
<a href="?view=dishes"><button>Dishes</button></a>
<a href="?view=day"><button>Today</button></a>
<a href="?view=edit"><button>Edit this week</button></a>
<a href="?view=edit&week=next"><button>Edit next week</button></a>
<a href="?view=week&week=prev"><button>View last week</button></a>
<a href="?view=week&week=cur"><button>View this week</button></a>
<a href="?view=week&week=next"><button>View next week</button></a>
</div>
</body>
</html>