-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
41 lines (37 loc) · 1.39 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
<!DOCTYPE html>
<html>
<head>
<title>Merchant Square Lunch Menu</title>
<link rel='stylesheet' href='reset.css'/>
<link rel='stylesheet' href='style.css'/>
<script type='text/javascript' src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/handlebars.js/1.3.0/handlebars.js"></script>
<script src="javascripts/tabletop.js" type="text/javascript"></script>
<script src="javascripts/menu.js" type="text/javascript"></script>
<script src='javascripts/script.js' type="text/javascript"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
</head>
<body>
<img src="logo.png" alt="Merchant Square Menu logo" />
<script id="meal-template" type="text/x-handlebars-template">
{{#each this}}
<div class="day" id="{{@key}}">
<div class="nav">
<h2>{{@key}}</h2>
<div class="day-navigation next-day"></div>
<div class="day-navigation previous-day"></div>
</div>
<ul>
{{#each this}}
<li class="menu-item">
<h3>{{type}}</h3>
<p>{{name}}</p>
</li>
{{/each}}
</ul>
</div>
{{/each}}
</script>
</body>
</html>