-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (59 loc) · 2.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="Description" content="Author: Restaurant Reviews, Category: Food, Length: 2 pages">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" src="//normalize-css.googlecode.com/svn/trunk/normalize.css" />
<!-- Load map -->
<link rel="stylesheet" media="leaflet" onload="this.media='all'" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ=="
crossorigin="" />
<!-- Load main styles -->
<link rel="stylesheet" media="styles" onload="this.media='all'" href="dist/css/styles.min.css">
<link rel="manifest" href="/manifest.json">
<meta name="mobile-web-app-capable" content="yes">
<meta name="theme-color" content="#1976d2">
<title>Restaurant Reviews</title>
</head>
<body>
<a href="#neighborhoods-select" class="skip-link">Skip map section to filter section dropdowns</a>
<header>
<nav>
<h1>
<a href="/">Restaurant Reviews</a>
</h1>
</nav>
</header>
<main id="maincontent">
<section id="map-container">
<div id="map" role="application" aria-label="map for locating all available restaurants, please use arrow keys to move the map accordingly"></div>
</section>
<section>
<div class="filter-options">
<h2>Filter Results</h2>
<select id="neighborhoods-select" aria-label="filter neighborhoods" name="neighborhoods">
<option value="all">All Neighborhoods</option>
</select>
<select id="cuisines-select" aria-label="filter cuisines" name="cuisines">
<option value="all">All Cuisines</option>
</select>
</div>
<ul id="restaurants-list"></ul>
</section>
</main>
<script defer src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw=="
crossorigin=""></script>
<script defer type="application/javascript" charset="utf-8" src="dist/js/index.min.js"></script>
<footer id="footer">
Copyright (c) 2018
<a href="/">
<strong>Restaurant Reviews</strong>
</a> All Rights Reserved.
</footer>
<section class="toast restaurant-toast hide"></section>
<noscript>
JavaScript is required to be enabled to run this application.
</noscript>
</body>
</html>