-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
89 lines (76 loc) · 3.09 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta content="ie=edge" http-equiv="x-ua-compatible">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta name="description" content="A restaurant reviews app">
<meta name="author" content="Chidinma Kalu">
<title>Restaurant Reviews</title>
<link rel="icon" src="img/favicon.ico" />
<link rel="stylesheet" src="//normalize-css.googlecode.com/svn/trunk/normalize.css" />
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css" integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ==" crossorigin=""/>
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<header role="banner">
<div class="container-top">
<nav aria-labelledby="navHeading" role="navigation">
<h1 id="navHeading">
<a href="/">Restaurant Reviews</a>
</h1>
</nav>
</div>
</header>
<main id="maincontent" role="main">
<section id="map-container">
<div class="container-top">
<div id="map" aria-labelledby="map-aria-description" role="application"></div>
<label id="map-aria-description" class="mapLabel">Map Application</label>
</div>
</section>
<section id="filter-container">
<div class="container">
<div class="filter-options">
<h2>Filter Results</h2>
<div class="filter-options-label">
<select id="neighborhoods-select" name="neighborhoods" aria-labelledby="neighborhoods-label" onchange="updateRestaurants()">
<option value="all">All Neighborhoods</option>
</select>
<label id="neighborhoods-label" class="filterLabel">by neighborhoods</label>
</div>
<div class="filter-options-label">
<select id="cuisines-select" name="cuisines" aria-labelledby="cuisines-label" onchange="updateRestaurants()">
<option value="all">All Cuisines</option>
</select>
<label id="cuisines-label" class="filterLabel">by cuisines</label>
</div>
</div>
</div>
</section>
<section id="restaurant-container">
<div class="container">
<ul id="restaurants-list"></ul>
</div>
</section>
</main>
<footer id="footer" role="contentinfo">
<div class="container">
<p>
Copyright (c) 2018
<a href="/">
<strong>Restaurant Reviews</strong>
</a>
All Rights Reserved.
</p>
</div>
</footer>
<script src="https://unpkg.com/leaflet@1.3.1/dist/leaflet.js" integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw==" crossorigin=""></script>
<script type="application/javascript" charset="utf-8" src="js/dbhelper.js"></script>
<script type="application/javascript" charset="utf-8" src="js/register.js"></script>
<script type="application/javascript" charset="utf-8" src="js/main.js"></script>
</body>
</html>