forked from udacity/mws-restaurant-stage-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrestaurant.html
80 lines (74 loc) · 2.61 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
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="theme-color" content="#fff">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Normalize.css for better cross-browser consistency -->
<link rel="stylesheet" src="//normalize-css.googlecode.com/svn/trunk/normalize.css" />
<!-- Main CSS file -->
<link rel="stylesheet" href="css/styles.css" type="text/css">
<title>Restaurant Info</title>
<link rel="manifest" href="manifest.json">
</head>
<body class="inside">
<!-- Beginning header -->
<header>
<div id="skiptocontent"><a href="#restaurant-container">skip to main content</a></div>
<!-- Beginning nav -->
<nav>
<h1><a href="/">Restaurant Reviews</a></h1>
</nav>
<!-- Beginning breadcrumb -->
<nav aria-label="breadcrumb" class="breadcrumb">
<ul id="breadcrumb">
<li><a href="/">Home</a></li>
</ul>
</nav>
<!-- End breadcrumb -->
<!-- End nav -->
</header>
<!-- End header -->
<!-- Beginning main -->
<main id="maincontent" tabindex="-1">
<!-- Beginning map -->
<section id="map-container">
<div id="map" role="application" aria-describedby="restaurant-name restaurant-address" aria-label="restaurants map"></div>
</section>
<!-- End map -->
<!-- Beginning restaurant -->
<section id="restaurant-container" tabindex="-1">
<h2 id="restaurant-name"></h2>
<img id="restaurant-img">
<p id="restaurant-cuisine"></p>
<p id="restaurant-address"></p>
<table id="restaurant-hours"></table>
</section>
<!-- end restaurant -->
<!-- Beginning reviews -->
<section id="reviews-container">
<ul id="reviews-list"></ul>
</section>
<!-- End reviews -->
<section>
<h3>Write your review</h3>
<form id="add-review"></form>
</section>
</main>
<!-- End main -->
<p id="notification" class="notification-hide"></p>
<!-- Beginning footer -->
<footer id="footer">
Copyright (c) 2017 <a href="/"><strong>Restaurant Reviews</strong></a> All Rights Reserved.
</footer>
<!-- End footer -->
<!-- Beginning scripts -->
<!-- Database helpers -->
<script charset="utf-8" src="/js/dbhelper.js"></script>
<script charset="utf-8" src="/js/main.js"></script>
<script charset="utf-8" src="/js/restaurant_info.js"></script>
<!-- Google Maps -->
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyAUIqYCM1FzI87-jIgyNfY7EI1Ziic3nDM&libraries=places&callback=initMap"></script>
<!-- End scripts -->
</body>
</html>