-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdiscover.html
More file actions
101 lines (87 loc) · 3.55 KB
/
discover.html
File metadata and controls
101 lines (87 loc) · 3.55 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
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="description" content="Learn how to use the Firebase platform on the Web">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Poetry Mark</title>
<!-- Disable tap highlight on IE -->
<meta name="msapplication-tap-highlight" content="no">
<!-- Web Application Manifest -->
<link rel="manifest" href="manifest.json">
<!-- Add to homescreen for Chrome on Android -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="application-name" content="Poetry Mark">
<meta name="theme-color" content="#303F9F">
<!-- Add to homescreen for Safari on iOS -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="apple-mobile-web-app-title" content="Poetry Mark">
<meta name="apple-mobile-web-app-status-bar-style" content="#303F9F">
<!-- Tile icon for Win8 -->
<meta name="msapplication-TileColor" content="#3372DF">
<meta name="msapplication-navbutton-color" content="#303F9F">
<!-- Material Design Lite -->
<script defer src="https://code.getmdl.io/1.1.3/material.min.js"></script>
<!-- App Styling -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto:regular,bold,italic,thin,light,bolditalic,black,medium&lang=en">
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<!-- Header section containing logo -->
<div id="header">
<div class="heading-text">
<h1>Poetry Mark</h1>
</div>
<div id="user-container">
<div hidden id="user-pic"></div>
<div hidden id="user-name"></div>
<button hidden id="sign-out">
Sign-out
</button>
<button hidden id="sign-in">
<i class="material-icons">account_circle</i>Sign-in with Google
</button>
</div>
<div id="toolbar-wrapper">
<div id="toolbar">
<div class="flex"><a href="index.html">Home</a></div>
<div class="flex"><a href="top-poems.html">Top Poems</a></div>
<div class="flex"><a href="discover.html">Discover</a></div>
<div class="flex"><a href="personal-feed.html">Personal Feed</a></div>
<div class="flex"><a href="likes.html">Likes</a></div>
<div class="flex"><a href="voting-history.html">Voting History</a></div>
</div>
</div>
</div>
<div id="main-body">
<img id="left-arrow" src="/images/left-arrow.png" height=512 width=512>
<div id="poem-body">
</div>
<img id="right-arrow" src="/images/right-arrow.png" height=512 width=512>
</div>
<template>
<link rel="stylesheet" href="styles/star-style.css">
<span class="favorite-star-character">★</span>
</template>
<!-- Import and configure the Firebase SDK -->
<!-- These scripts are made available when the app is served or deployed on Firebase Hosting -->
<!-- If you do not want to serve/host your project using Firebase Hosting see https://firebase.google.com/docs/web/setup -->
<script src="https://www.gstatic.com/firebasejs/4.1.2/firebase.js"></script>
<script>
// Initialize Firebase
var config = {
apiKey: "AIzaSyAMA1mLDRNDPTVVCiwipTzs3xmAEnB7mWo",
authDomain: "poetry-mark.firebaseapp.com",
databaseURL: "https://poetry-mark.firebaseio.com",
projectId: "poetry-mark",
storageBucket: "poetry-mark.appspot.com",
messagingSenderId: "788972803697"
};
firebase.initializeApp(config);
</script>
<script src="scripts/star.js"></script>
<script src="scripts/main.js"></script>
</body>
</html>