-
Notifications
You must be signed in to change notification settings - Fork 3
/
restaurant.html
executable file
·60 lines (49 loc) · 2.22 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Normalize.css for better cross-browser consistency -->
<link rel="stylesheet" src="//normalize-css.googlecode.com/svn/trunk/normalize.css" />
<link rel="stylesheet" href="css/styles.css">
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css" integrity="sha512-Rksm5RenBEKSKFjgI3a41vrjkw4EVPlJ3+OiI65vTjIdo9brlAacEuKOiQ5OFh7cOI1bkDwLqdLw3Zg0cRJAAQ==" crossorigin=""/>
<title>Restaurant Info</title>
</head>
<body>
<header class="app-header grid-row">
<nav role="navigation" aria-labelledby="site-title">
<h1 id="site-title"><a href="/">Restaurant Reviews</a></h1>
</nav>
</header>
<nav class="breadcrumb-container" role="navigation" aria-labelledby="breadcrumb">
<ul id="breadcrumb">
<li><a href="/">Home</a></li>
</ul>
</nav>
<main class="inside grid-row">
<section id="map-container">
<div id="map" role="application"></div>
</section>
<section id="restaurant-container" class="grid-column restaurant-section">
<h2 id="restaurant-name" class="restaurant-name"></h2>
<img id="restaurant-img">
<p id="restaurant-cuisine"></p>
<p id="restaurant-address"></p>
<table id="restaurant-hours"></table>
</section>
<section id="reviews-container" class="restaurant-section">
<ul id="reviews-list" class="grid-row"></ul>
</section>
</main>
<footer class="app-footer">
Copyright (c) 2017 <a href="/"><strong>Restaurant Reviews</strong></a> All Rights Reserved.
</footer>
<script src="https://unpkg.com/[email protected]/dist/leaflet.js" integrity="sha512-/Nsx9X4HebavoBvEBuyp3I7od5tA0UzAxs+j83KgC8PU0kgB4XiK4Lfe4y4cgBtaRJQEIFCW+oC506aPT2L1zw==" crossorigin=""></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=AIzaSyA_tKbW6A5pQ-eupxI56myUnHLqYCzOjKo&libraries=places&callback=initMap"></script> -->
</body>
</html>