-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsearches.html
73 lines (72 loc) · 2.61 KB
/
searches.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
66
67
68
69
70
71
72
73
<!DOCTYPE html>
<html>
<head>
<title>Restaurant Repot Card</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="vendor/style/normalize.css">
<link href='https://fonts.googleapis.com/css?family=Maven+Pro:400,500,700|Crete+Round:400,400italic' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="vendor/style/jquery-ui.structure.css">
<link rel="stylesheet" type="text/css" href="vendor/style/jquery-ui.theme.css">
<link rel="stylesheet" type="text/css" href="styles/base.css">
<link rel="stylesheet" type="text/css" href="styles/layout.css">
<link rel="stylesheet" type="text/css" href="styles/module.css">
<link rel="stylesheet" type="text/css" href="styles/about.css">
<!-- seach history handlebars template -->
<script id="searches-template" type="text/x-handlebars-template">
<tr>
<td>{{id}}</td>
<td>{{inspection_date}}</td>
<td>{{name}}</td>
<td>{{inspection_score}}</td>
<td>{{address}}</td>
<td>{{city}}</td>
<td>{{zip_code}}</td>
</tr>
</script>
</head>
<body>
<header>
<div class="header-background">
<img id="main-logo" src="images/branding/reportcard.png" alt="RestaurantReportCard.org logo" />
<h1 id="webapp-title">Restaurant<span class="spacing"> </span>Report<span class="spacing"> </span>Card<span class="spacing"> . </span>org</h1>
</div>
<div class="nav-block">
<nav>
<ul>
<li><a href="/">Home</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section id="search-history">
<table>
<thead>
<tr>
<th>ID</th>
<th>Date</th>
<th>Name</th>
<th>Inspection Score</th>
<th>Address</th>
<th>City</th>
<th>Zip Code</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</section>
</main>
<!-- vendor scripts -->
<script src="/vendor/scripts/jquery.js"></script>
<script src="/vendor/scripts/jquery-ui.js"></script>
<script src="/vendor/scripts/handlebars.js"></script>
<script src="/vendor/scripts/html5sql.js"></script>
<script src="/vendor/scripts/webdb.js"></script>
<script src="/vendor/scripts/page.js"></script>
<script src="/vendor/scripts/jquery.konami.js" type="text/javascript"></script>
<!-- search history scripts -->
<script src="/scripts/searches.js"></script>
<script src="/scripts/searchesView.js"></script>
</body>
</html>