-
Notifications
You must be signed in to change notification settings - Fork 4
/
about.html
59 lines (50 loc) · 2.65 KB
/
about.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
<!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 to find restaurant 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 class="active"><a href="#">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><!--/.nav-collapse -->
</div>
</div>
<div class="container theme-showcase" role="main">
<div class="middle">
<h3>Food Service Establishment Inspection Results for CNY</h3>
</div>
<div class="center">
<p>I built this app to demonstrate how to use <a href="http://opendata.guide/">open data</a> from government to build a useful application. I'd also like to avoid food poisining if I can.</p>
<p>All of the code for this app is open source, you can <a href="https://github.com/code-for-syracuse/eatsafecny">find it on GitHub</a>.</p>
<p>If you'd like to help build more apps like this using open data, check out the <a href="https://codeforsyracuse.org/">Code for Syracuse</a>.</p>
<p>DISCLAIMER: This site is not affiliated with the NYS Department of Health or the Onondaga County Health Department.</p>
</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>
</body>
</html>