forked from udacity/mws-restaurant-stage-1
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathrestaurant.html
76 lines (64 loc) · 2.52 KB
/
restaurant.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/main.css" type="text/css">
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.3.1/dist/leaflet.css" integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ==" crossorigin="" />
<title>Restaurant Info</title>
</head>
<body class="restaurant">
<!-- Header -->
<header class="container__header" role="banner">
<h1 class="title__text">
<a href="index.html">Restaurant Reviews</a>
</h1>
</header>
<!-- Breadcrumb -->
<nav class="container__breadcrumb" role="navigation">
<ul id="breadcrumb" aria-label="Breadcrumb">
<li>
<a href="index.html">Home</a>
</li>
</ul>
</nav>
<!-- Main Content -->
<main class="container__content" role="main">
<!-- Restaurant Info -->
<section class="container__info">
<!-- Restaurant details -->
<section class="container__restaurant" id="restaurant-container">
<h2 class="name" id="restaurant-name"></h2>
<img class="lazyload" id="restaurant-img">
<p class="cuisine" id="restaurant-cuisine"></p>
<p class="address" id="restaurant-address"></p>
<table class="hours" id="restaurant-hours"></table>
</section>
<!-- Restaurant reviews -->
<section class="container__reviews" id="reviews-container">
<ul class="reviews__list" id="reviews-list"></ul>
</section>
</section>
<!-- Map -->
<section class="container__map restaurants">
<div class="map restaurants lazyload" id="map" aria-label="Map" role="application"></div>
</section>
</main>
<!-- Footer -->
<footer class="container__footer" id="footer" role="contentinfo">
<span>Copyright © 2017 </span>
<span>
<a href="index.html">
<strong>Restaurant Reviews</strong>
</a>
</span>
<span> All Rights Reserved.</span>
</footer>
<!-- Scripts -->
<script defer src="js/dbhelper.js"></script>
<script defer src="js/restaurant_info.js"></script>
<script defer src="js/sw_register.js"></script>
<script defer src="js/lazysizes.min.js"></script>
<script defer src="https://unpkg.com/leaflet@1.3.1/dist/leaflet.js" integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw==" crossorigin=""></script>
</body>
</html>