-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·59 lines (53 loc) · 2.43 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="author" content="Ana Gamito">
<meta name="description" content="Restaurant Reviews App for Udacity Mobile Web Specialist Nanodegree">
<meta name="keywords" content="restaurant, responsive, accessible, offline, offline-first, udacity, google, nanodegree">
<meta name="theme-color" content="#ffa500"/>
<title>Restaurant Reviews</title>
<!--[if IE]><link rel="shortcut icon" href="./assets/img/favicon.ico"><![endif]-->
<link rel="icon" href="./assets/img/favicon.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<link rel="stylesheet" href="./assets/css/styles.css">
<link rel="manifest" href="./manifest.json">
</head>
<body>
<header>
<a href="#filter" class="skip-link">Skip to Filter Section→</a>
<nav>
<h1><a href="./index.html">Restaurant Reviews</a></h1>
</nav>
</header>
<main class="maincontent" aria-label="content">
<section class="map-container">
<div class="map" id="map" aria-hidden="true" role="application" tabindex="-1"></div>
</section>
<section id="filter" tabindex="-1" role="search">
<div class="filter-options">
<h2>Filter Results</h2>
<div class="filter">
<label for="neighborhoods-select">Select neighborhood:</label>
<select id="neighborhoods-select" name="neighborhoods" onchange="updateRestaurants()">
<option value="all">All Neighborhoods</option>
</select>
<label for="cuisines-select">Select cuisine:</label>
<select id="cuisines-select" name="cuisines" onchange="updateRestaurants()">
<option value="all">All Cuisines</option>
</select>
</div>
</div>
<ul class="cards flex-layout" id="restaurants-list" role="list"></ul>
</section>
</main>
<footer class="footer">
Copyright (c) 2018 <a href="./index.html"><strong>Restaurant Reviews</strong></a> All Rights Reserved.
</footer>
<script charset="utf-8" src="./js/registerSW.js"></script>
<script charset="utf-8" src="./js/dbhelper.js"></script>
<script charset="utf-8" src="./js/main.js"></script>
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBnvFIs5H8nHN4bXNVbcnhfV-sfEUgErj8&libraries=places&callback=initMap" async defer></script>
</body>
</html>