forked from udacity/mws-restaurant-stage-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 2.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#194b6d"/>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css" media="screen" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ==" crossorigin=""/>
<link rel="stylesheet" href="css/styles.css" media="screen">
<link rel="manifest" href="manifest.json">
<link rel="dns-prefetch" href="//localhost:1337">
<title>Restaurant Reviews</title>
</head>
<body>
<header>
<nav>
<h1><a href="/">Restaurant Reviews</a></h1>
</nav>
</header>
<main id="maincontent">
<section id="map-container" tabindex="-1" aria-hidden="true">
<div id="map" role="application"></div>
</section>
<section>
<div class="filter-options">
<form id="filter-results">
<fieldset>
<legend><h2>Filter Results</h2></legend>
<label hidden id="neighborhoods-label" for="neighborhoods-select">Filter neighborhoods</label>
<select id="neighborhoods-select" name="neighborhoods" aria-labelledby="neighborhoods-label" onchange="updateRestaurants()">
<option value="all" selected>All Neighborhoods</option>
</select>
<label hidden id="cuisines-label" for="cuisines-select">Filter cuisines</label>
<select id="cuisines-select" name="cuisines" aria-labelledby="cuisines-label" onchange="updateRestaurants()">
<option value="all" selected>All Cuisines</option>
</select>
</fieldset>
</form>
</div>
<div id="notification" aria-live="polite"></div>
<ul id="restaurants-list"></ul>
</section>
</main>
<footer id="footer">
Copyright (c) 2018 <a href="/"><strong>Restaurant Reviews</strong></a> All Rights Reserved.
</footer>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw==" crossorigin=""></script>
<script src="js/idb.js"></script>
<script src="js/dbhelper.js"></script>
<script src="js/app.js"></script>
<script src="js/main.js"></script>
</body>
</html>