forked from SRidings/ProjectOne
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist-view.html
More file actions
39 lines (38 loc) · 2.2 KB
/
list-view.html
File metadata and controls
39 lines (38 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8" />
<title>Tailwag</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- CSS RESET -->
<link rel="stylesheet" type="text/css" href="assets/css/reset.css" />
<!-- BOOTSTRAP -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- FONT AWESOME ICONS -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<!-- OUR CSS -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css" />
<!-- JQUERY -->
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<!-- FIREBASE -->
<script src="https://www.gstatic.com/firebasejs/5.3.1/firebase.js"></script>
</head>
<body>
<!-- Nav -->
<div class="icon-bar fixed-top">
<a href="index.html"><i class="fas fa-map-marker-alt"></i></a>
<a class="active" href="list-view.html"><i class="fas fa-list-ul"></i></a>
<a href="#"><img src="assets/photos/tailwag.png" class="tailwag" /></a>
<a href="weather.html"><i class="fas fa-sun"></i></a>
<a href="add-park.html"><i class="fas fa-plus"></i></a>
</div>
<!-- Main Content -->
<div class="wrapper container-fluid" id="listWrapper"></div>
<!-- BOOTSTRAP JS -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<!-- OUR JAVASCRIPT -->
<script src="assets/javascript/script.js"></script>
<script src="assets/javascript/firebase.js"></script>
</body>
</html>