-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
60 lines (58 loc) · 2.71 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="A quick and easy way to find restaurant health inspection results in CNY">
<meta name="author" content="Mark Headd">
<link rel="icon" href="assets/favicon.ico">
<title>Eat Safe CNY</title>
<link href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.6/united/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/style.css" rel="stylesheet"/>
</head>
<body role="document">
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="/">Eat Safe CNY</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="/?latest=true&limit=10">Latest</a></li>
<li><a href="/?worst=true&limit=10">Worst</a></li>
<li><a href="about.html">About</a></li>
<li><a href="https://health.data.ny.gov/Health/Onondaga-County-Restaurant-Inspections/tbxv-5tbd" target="_blank">Data</a></li>
</ul>
</div>
</div>
</div>
<div class="container theme-showcase" role="main">
<div class="middle">
<h3>Food Service Establishment Inspection Results for CNY</h3>
</div>
<div class="input-group">
<input type="text" class="form-control" id="name" placeholder="Enter name or partial name...">
<span class="input-group-btn">
<button class="btn btn-default" type="button" id="search">Search</button>
</span>
</div>
<div class="alert alert-warning hide" role="alert">
Fetching data...
</div>
<div id="results"></div>
</div>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/handlebars@latest/dist/handlebars.runtime.js"/></script>
<script src="assets/js/app.js"/></script> <!-- main application logic -->
<script src="assets/js/helpers.js"></script> <!-- helper functions -->
<script src="assets/js/templates.js"></script> <!-- compiled template file -->
</body>
</html>