-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (47 loc) · 2.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link href="https://use.fontawesome.com/releases/v5.0.8/css/all.css" rel="preload" as="style" onload="this.rel='stylesheet'">
<link rel="stylesheet" href="client/css/styles.css">
<link rel="stylesheet" href="client/css/media-500.css" media="(min-width: 500px)">
<link rel="stylesheet" href="client/css/media-1024.css" media="(min-width: 1024px)">
<meta name="theme-color" content="#38191e">
<link rel="manifest" href="manifest.json">
<title>Restaurant Reviews</title>
</head>
<body>
<header>
<nav class="header-nav">
<a href="#filter-options" class="skip-link" onclick="skipTo('filter-options')">Skip to filter options</a>
<h1><a href="/">Restaurant Reviews</a></h1>
</nav>
</header>
<main id="maincontent" role="main">
<section id="map-container" role="application" aria-label="Map container">
<div id="map"></div>
</section>
<section>
<div class="filter-options" id="filter-options" tabindex="-1" aria-label="Filter options">
<h2 id="filter-header">Filter Results</h2>
<select id="neighborhoods-select" name="neighborhoods" aria-labelledby="filter-header"
onchange="updateRestaurants()">
<option value="all">All Neighborhoods</option>
</select>
<select id="cuisines-select" name="cuisines" aria-labelledby="filter-header" onchange="updateRestaurants()">
<option value="all">All Cuisines</option>
</select>
</div>
<ul id="restaurants-list"></ul>
</section>
</main>
<script type="application/javascript" charset="utf-8" src="client/js/idb.js"></script>
<script type="application/javascript" charset="utf-8" src="client/js/dbhelper.js"></script>
<script type="application/javascript" charset="utf-8" src="client/js/main.js"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDyXjdWoppnIWXDlumDM5xfLoS3CDjjJqg&libraries=places&callback=initMap" async defer></script>
<footer id="footer">
Copyright (c) 2018 <a href="/"><strong>Restaurant Reviews</strong></a> All Rights Reserved.
</footer>
</body>
</html>