forked from udacity/mws-restaurant-stage-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrestaurant.html
More file actions
95 lines (92 loc) · 3.69 KB
/
restaurant.html
File metadata and controls
95 lines (92 loc) · 3.69 KB
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
90
91
92
93
94
95
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#53002a">
<meta name="apple-mobile-web-app-title" content="Restaurant Review">
<meta name="application-name" content="Restaurant Review">
<meta name="msapplication-TileColor" content="#53002a">
<meta name="theme-color" content="#ffffff">
<!-- Install the service worker -->
<script type="application/javascript" charset="utf-8">
if ('serviceWorker' in navigator) {
navigator.serviceWorker.register('/sw.js').then(() => {
console.log('service worker registered successfully');
}).catch( error => {
console.error('service worker registration FAILED', error);
});
}
</script>
<!-- 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>
</head>
<body class="inside">
<a href="javascript:void(0)" onclick="skipToMainContent()" class="skip-link" id="skip-to-content">Skip to main content</a>
<!-- Beginning header -->
<header>
<!-- Beginning nav -->
<nav>
<h1><a href="/">Restaurant Reviews</a></h1>
</nav>
<!-- Beginning breadcrumb -->
<ul id="breadcrumb" role="navigation">
<li><a href="/">Home</a></li>
</ul>
<!-- End breadcrumb -->
<!-- End nav -->
</header>
<!-- End header -->
<!-- Beginning main -->
<main role="main" id="maincontent" tabindex="-1">
<!-- Beginning map -->
<section id="map-container" role="application">
<div id="map"></div>
</section>
<!-- End map -->
<div id="restaurant-information">
<!-- Beginning restaurant -->
<section id="restaurant-container">
<div tabindex="-1" id="restaurant-name-container">
<h2 id="restaurant-name"></h2>
<p id="restaurant-details-faux-link">More details</p>
</div>
<div id=restaurant-img-container></div>
<div id=restaurant-details-container>
<h4 class="offscreen-heading">Cuisine type</h4>
<p id="restaurant-cuisine"></p>
<h4 class="offscreen-heading">Restaurant address</h4>
<p id="restaurant-address"></p>
<h4 class="offscreen-heading">Restaurant hours</h4>
<table id="restaurant-hours"></table>
</div>
</section>
<!-- end restaurant -->
<!-- Beginning reviews -->
<section id="reviews-container">
<ul id="reviews-list"></ul>
</section>
<!-- End reviews -->
</div>
<!-- End reviews -->
</main>
<!-- End main -->
<!-- Beginning footer -->
<footer id="footer">
Copyright (c) 2017 <a href="/"><strong>Restaurant Reviews</strong></a> All Rights Reserved.
</footer>
<div id="favorite-button-container"></div>
<!-- End footer -->
<!-- Beginning scripts -->
<script type="text/javascript" src="js/script-bundle.js"></script>
<!-- End scripts -->
</body>
</html>