-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfeed.html
37 lines (37 loc) · 1.43 KB
/
feed.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link rel="stylesheet" href="feed.css" />
<script
src="https://kit.fontawesome.com/355d6f4d57.js"
crossorigin="anonymous"
></script>
<script src="feed.js"></script>
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<title>Your Feed</title>
</head>
<body>
<div></div>
<header>
<div class="title-small">Pet-Tential</div>
<!-- look into bootstrap navbars-->
<div class="nav-buttons">
<a class="btn" href="saved_pets_index.html" ><i class="far fa-heart fa-lg"></i></a>
<a class="btn" href="account.html"><i class="fas fa-user-cog fa-lg"></i></a>
<a class="btn" href="goodBye.html" onclick="signOut();"><i class="fas fa-sign-out-alt fa-lg"></i></a>
</div>
</header>
<section class="feed" id="root">
<!-- hide heart buttons when on mobile and show heart buttons inside card instead -->
</section>
<script src="authorizationKey.js"></script>
<script src="dataFormatting.js"></script>
<script src="./pet-page.js"></script>
<script src="./reactFeed.js"></script>
<script src="./saved_pets_index.js"> </script>
</body>
</html>