-
Notifications
You must be signed in to change notification settings - Fork 0
/
restaurant.html
executable file
·85 lines (78 loc) · 3.21 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
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta name="author" content="Ana Gamito">
<meta name="description" content="Restaurant Reviews App for Udacity Mobile Web Specialist Nanodegree">
<meta name="keywords" content="restaurant, responsive, accessible, offline, offline-first, udacity, google, nanodegree">
<meta name="theme-color" content="#ffa500"/>
<title>Restaurant Info</title>
<!--[if IE]><link rel="shortcut icon" href="./assets/img/favicon.ico"><![endif]-->
<link rel="icon" href="./assets/img/favicon.png">
<!-- Normalize.css for better cross-browser consistency -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css">
<!-- Main CSS file -->
<link rel="stylesheet" href="./assets/css/styles.css">
<link rel="manifest" href="./manifest.json">
</head>
<body class="inside">
<!-- Beginning header -->
<header>
<a href="#restaurant-container" class="skip-link">Skip to Maincontent →</a>
<!-- Beginning nav -->
<nav>
<h1><a href="./index.html">Restaurant Reviews</a></h1>
</nav>
<!-- Beginning breadcrumb -->
<nav class="breadcrumb" aria-label="breadcrumb">
<ol id="breadcrumb">
<li><a href="./index.html">Home</a></li>
</ol>
</nav>
<!-- End breadcrumb -->
<!-- End nav -->
</header>
<!-- End header -->
<!-- Beginning main -->
<main class="maincontent" aria-label="content">
<!-- Beginning map -->
<section class="map-container review">
<div class="map" id="map" aria-hidden="true" role="application" tabindex="-1"></div>
</section>
<!-- End map -->
<!-- Beginning restaurant -->
<section class="restaurant-container" id="restaurant-container" tabindex="-1" role="contentinfo">
<h2 class="restaurant-name" id="restaurant-name"></h2>
<div class="card__img rounded" id="restaurant-detail">
<img id="restaurant-img">
<p class="restaurant-cuisine fade-caption" id="restaurant-cuisine"></p>
</div>
<p class="restaurant-address" id="restaurant-address"></p>
<table class="restaurant-hours" id="restaurant-hours" summary="Information about Restaurant opening hours"></table>
</section>
<!-- end restaurant -->
<!-- Beginning reviews -->
<section class="reviews-container" id="reviews-container">
<ul class="reviews-list flex-layout" id="reviews-list"></ul>
</section>
<!-- End reviews -->
</main>
<!-- End main -->
<!-- Beginning footer -->
<footer class="footer">
Copyright (c) 2018 <a href="./index.html"><strong>Restaurant Reviews</strong></a> All Rights Reserved.
</footer>
<!-- End footer -->
<!-- Beginning scripts -->
<!-- Register Service Worker -->
<script charset="utf-8" src="./js/registerSW.js"></script>
<!-- Database helpers -->
<script src="./js/dbhelper.js"></script>
<!-- Main javascript file -->
<script src="./js/restaurant_info.js"></script>
<!-- Google Maps -->
<script async defer src="https://maps.googleapis.com/maps/api/js?key=AIzaSyBnvFIs5H8nHN4bXNVbcnhfV-sfEUgErj8&libraries=places&callback=initMap" async defer></script>
<!-- End scripts -->
</body>
</html>