This repository has been archived by the owner on Nov 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
213 lines (176 loc) · 10 KB
/
index.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!-- HOMEPAGE -->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">
<title>STiBaRC</title>
<!-- CSS -->
<link rel="stylesheet" href="./css/global.css">
<link rel="stylesheet" href="./css/page-specific/homepage.css">
<link rel="stylesheet" href="./css/themes/default.css">
<link rel="stylesheet" href="./css/stibarc-css.css">
<!-- Google Icons -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<style>
</style>
</head>
<body>
<!-- Nav Bar -->
<nav class="nav">
<div class="nav-container">
<a class="logo logo-large" href="./"><img src="./design_files/logo.png" alt="STiBaRC Logo"></a>
<a class="logo logo-small" href="./"><img src="./design_files/logosquare.png" alt="STiBaRC Logo"></a>
<span class="flex-grow"></span>
<!-- Logged Out Buttons -->
<span id="loggedout">
<span class="nav-items">
<input class="input primaryAlt" placeholder="Search">
<a href="" class="button search primaryAlt material-icons">search</a>
<a href="login.html" class="button primaryAlt">Log In</a>
<a href="signup.html" class="button">Sign Up</a>
</span>
</span>
<!-- Logged In Buttons -->
<span id="loggedin">
<span class="nav-items">
<input class="input primaryAlt" placeholder="Search">
<a href="" class="button search primaryAlt material-icons">search</a>
<img class="pfpButton" tabindex="0">
<button class="button dropdown"><i class="material-icons" style="vertical-align: middle; line-height: 5px; font-size: 1.75rem;">keyboard_arrow_down</i></button>
</span>
</span>
</div>
</nav>
<main class="container nav-margin margin-bottom">
<div class="row">
<div class="col s12">
<br>
<span id="loggedout">
<!-- Hero Header -->
<div class="hero large primary center" style="margin-bottom: 1.75rem;">
<h1>Welcome to STiBaRC</h1>
<div class="m-bottom">
<a href="signup.html" class="button m-right">Sign Up</a>
<a href="aboutus.html" class="button primaryAlt">About Us</a>
</div>
</div>
</span>
</div>
<div class="col s12 m9">
<span id="loggedin">
<!-- Quick Post -->
<div style="display: flex; flex-direction: row; align-items: center; justify-content: space-between;">
<h2 style="margin-bottom: 1rem">Have Something to Say?</h2>
</div>
<div class="card quick-post">
<textarea name="Quick Post Content" placeholder="Make a Post..."></textarea>
<div class="quick-post-buttons">
<a class="button icon alt" style="margin-left: 1rem;" href="#">
<i class="material-icons" style="font-size: 1rem; vertical-align: middle;">attach_file</i>
</a>
<a class="button icon primary" style="margin-left: 1rem;" href="#">
<i class="material-icons" style="font-size: 1rem; vertical-align: middle;">send</i>
</a>
</div>
</div>
<!-- View Posts Header -->
<div class="post-header">
<h1 style="margin-right: 1rem; vertical-align: middle;" class="primary-text flex-grow">Recent Posts</h1>
<div class="post-header-buttons">
<a class="button primary" style="margin-right: 1rem;" href="#">Global Feed</a>
<a class="button alt" href="#">Followed Feed</a>
</div>
</div>
</span>
<span id="loggedout">
<h1 style="margin-bottom: 1rem;">Recent Posts</h1>
</span>
<!-- Large Card -->
<a class="card post" href="post.html">
<div class="post-info">
<img src="./design_files/newjimbo.png" alt="Profile picture" height="50px">
<div class="post-name" style="flex-grow: 1;">
<h2>Post Title</h2>
<h7><i>Post Author</i></h7>
</div>
<div class="post-stats">
<div class="post-votes">
<div class="stat-con-small pos">
<span class="material-icons" style="font-size: 15px; margin-right: 10px;">
thumb_up
</span>
<h5 style="font-size: 12px;">114K</h5>
</div>
<div class="stat-con-small neg">
<span class="material-icons" style="font-size: 15px; margin-right: 10px;">
thumb_down
</span>
<h5 style="font-size: 12px;">50</h5>
</div>
</div>
<h6><i>4 Hours Ago</i></h6>
</div>
</div>
<div class="content">
<span class="left">
<p style="text-align: justify; max-height: 75px; overflow: hidden;">
Here is a paragraph. This paragraph would be either the first 3-4 lines of the post, or a set description given by the user upon publishing, although that feature may have to wait until another post making page refresh. This particular card is the larger size, presumably to be used for full posts.
</p>
</span>
<span class="right">
<img src="./sample_assets/placeholderimage.png" alt="Embed placeholder">
</span>
</div>
</a>
<br>
</div>
<div class="col s12 m3">
<span id="loggedout">
<!-- Intro Paragraph -->
<p style="text-align: right;">
STiBaRC is the best place to share content - show others photos, videos, music and more, or just ask questions and share opinions!
</p>
</span>
<span id="loggedin">
<!-- Recent Activity -->
<h2 style="text-align: right">Recent Activity</h2>
<div class="card recent-activity">
<!-- Activity Template -->
<div class="activity">
<img src="./design_files/newjimbo.png" alt="Profile Picture" height="35px">
<div class="right">
<p><b>[username]</b> liked <b>[post]</b></p>
<h6><i>4 Hours Ago</i></h6>
</div>
</div>
<!-- Activity Template -->
<div class="activity">
<img src="./design_files/newjimbo.png" alt="Profile Picture" height="35px">
<div class="right">
<p><b>[username]</b> liked <b>[post]</b></p>
<h6><i>4 Hours Ago</i></h6>
</div>
</div>
</div>
</span>
<!-- Ad -->
<div class="card column-ad">
[Insert Ad Here]
</div>
</div>
</div><!-- /row -->
</main>
<footer>
<div class="footer-container">
<a href="./css.html" style="text-align: center"><i> © 2020 STiBaRC Team</i></a>
<div class="footer-buttons">
<a href="./index.html" class="button footer primary">Home</a>
<a href="./aboutus.html" class="button footer alt">About Us</a>
<a href="./legal/tos.html" class="button footer alt">ToS</a>
<a href="./legal/privacy.html" class="button footer alt">Privacy</a>
</div>
</div>
</footer>
</body>
</html>