This repository has been archived by the owner on Jul 5, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (47 loc) · 2.04 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Restaurant Reviews</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<!-- Normalize.css for cross-browser compatibility -->
<link rel="stylesheet" src="https://unpkg.com/[email protected]/normalize.css" />
<!-- Leaflet CSS for interactive maps -->
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-puBpdR0798OZvTTbP4A8Ix/l+A4dHDD0DGqYW6RQ+9jxkRFclaxxQb/SJAWZfWAkuyeQUytO7+7N4QKrDh+drA=="
crossorigin="" />
<!-- Main CSS file -->
<link rel="stylesheet" href="css/style.css" type="text/css" />
</head>
<body>
<header>
<nav>
<h1><a tabindex="1" href="/" aria-label="Review App Home">Restaurant Reviews</a></h1>
</nav>
</header>
<main id="maincontent">
<section tabindex="-1" id="map-container">
<div tabindex="-1" id="map" aria-label="location" role="application"></div>
</section>
<section>
<div class="filter-options">
<h2>Filter Results</h2>
<select id="neighborhoods-select" name="neighborhoods" aria-label="Select neighborhoods" onchange="updateRestaurants()">
<option value="all">All Neighborhoods</option>
</select>
<select tabindex="2" id="cuisines-select" name="cuisines" aria-label="Select cuisines" onchange="updateRestaurants()">
<option value="all">All Cuisines</option>
</select>
</div>
<ul id="restaurants-list"></ul>
</section>
</main>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-nMMmRyTVoLYqjP9hrbed9S+FzjZHW5gY1TWCHA5ckwXZBadntCNs8kEqAWdrb9O7rxbCaA4lKTIWjDXZxflOcA=="
crossorigin=""></script>
<script charset="utf-8" src="js/dbhelper.js"></script>
<script charset="utf-8" src="js/main.js"></script>
<footer id="footer" aria-label="footer">
Copyright (c) 2017 <a href="/"><strong>Restaurant Reviews</strong></a> All Rights Reserved.
</footer>
</body>
</html>