forked from kevinhinkel/remembeer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfavorites.html
85 lines (71 loc) · 2.91 KB
/
favorites.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>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Reset CSS File -->
<link rel="stylesheet" type="text/css" href="assets/css/reset.css">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lssLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy" crossorigin="anonymous">
<!-- Custom CSS -->
<link rel="stylesheet" href="assets/css/style.css" type="text/css" />
<!-- Custom fonts -->
<link href="https://fonts.googleapis.com/css?family=Baloo+Chettan" rel="stylesheet">
<title>Favorites</title>
</head>
<body>
<!-- Alert when favorite is deleted -->
<div class="alert alert-primary alert-dismissible fade show" role="alert">
<strong>Brewery removed from favorites!</strong>I hope we can still be drinking buddies.
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<!-- Navbar -->
<header id="masthead">
<div class="containter">
<div id="logo"> <a href="index.html"> <img src="assets/images/Logo150x108_YW.png"/> </a> </div>
<nav>
<!-- <a href="home.html">HOME</a> -->
<a href="index.html">ABOUT</a>
<a href="map.html">MAP</a>
<a href="favorites.html">FAVORITES</a>
</nav>
</div>
</header>
<!-- Table of saved favorites -->
<div class="containter">
<div class="row">
<div class="col-md-8 offset-2">
<table class="table table-hover">
<thead>
<tr>
<!-- room for icon-->
<th scope="col">NAME</th>
<th scope="col">LINK</th>
<th scope="col"></th>
</tr>
</thead>
<tbody class="favorites-table">
<h1 id="favs">Favorites</h1>
<!-- list of favorites go here -->
</tbody>
</table>
</div>
</div>
</div>
<footer>
<div class="containter">
<p><strong>DON'T WORRY, BE HOPPY</strong></p>
</div>
</footer>
<!-- Firebase -->
<script src="https://www.gstatic.com/firebasejs/4.8.2/firebase.js"></script>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.3/umd/popper.min.js" integrity="sha384-vFJXuSJphROIrBnz7yo7oB41mKfc8JzQZiCq4NCceLEaO4IHwicKwpJf9c9IpFgh" crossorigin="anonymous"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/js/bootstrap.min.js" integrity="sha384-alpBpkh1PFOepccYVYDB4do5UnbKysX5WZXm3XxPqe5iKTfUKjNkCk9SaVuEZflJ" crossorigin="anonymous"></script>
<script type="text/javascript" src="assets/javascript/app.js"></script>
</body>
</html>