-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpostslist.html
430 lines (351 loc) · 20.2 KB
/
postslist.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
<!DOCTYPE html>
<html>
<head>
<!-- TODO: Include Font Awesome file here -->
<!-- TODO: Include Google Fonts file here -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css?family=Montez|Roboto|Ubuntu+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"
type="text/css" media="screen" />
<link rel="stylesheet" type="text/css" href="../style/common.css" />
<link rel="stylesheet" type="text/css" href="../style/postslist.css" />
</head>
<body style=" background-color: #ffeedd;">
<!-- TODO: Include code for header here -->
<div class="header">
<div class="bg-signin">
<button type="button" class="signinupbutton" data-toggle="modal" data-target="#exampleModal"
id="sign-in-button">
Sign In
</button>
<button type="button" class="signinupbutton" data-toggle="modal" data-target="#exampleModalSignUp"
id="sign-up-button">
Sign Up
</button>
</div>
<a id="pageTitle" class="logo-title">ScriBBler</a>
<p class="sub-heading">Explore, Imagine, Create</p>
<!-- Modal -->
<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLabel"
style="color:grey;font-family: 'Roboto', sans-serif;font-size: larger;">Welcome Back !</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="form-group">
<label for="exampleInputUsername">Username</label>
<input type="text" class="form-control" id="exampleInputUsername"
aria-describedby="usernameHelp" placeholder="Enter your username"
style="background-color :#DCDCDC ;" required>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1"
placeholder="Enter your password" style="background-color :#DCDCDC ;" required>
</div>
<div class="modal-signin-container">
<button type="submit" class="btn btn-success btn-block">Sign In</button>
</div>
<div class="modal-footer border-top-0 d-flex justify-content-center">
Not a member ? <a data-target="#exampleModalSignUp" data-dismiss="modal"
data-toggle="modal" href="#signup-form"> Sign Up</a>
</div>
</form>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="exampleModalSignUp" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel"
aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h4 class="modal-title" id="exampleModalLabel"
style="color:grey;font-family: 'Roboto', sans-serif;font-size: larger;">Get Started</h4>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">
<form>
<div class="form-group">
<label for="name">Name</label>
<input type="text" class="form-control" id="name" placeholder="Enter your name"
style="background-color : #DCDCDC ;" required>
</div>
<div class="form-group">
<label for="exampleInputUsername1">Username</label>
<input type="text" class="form-control" id="exampleInputUsername1"
aria-describedby="emailHelp" placeholder="Enter your username"
style="background-color :#DCDCDC ;" required>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Password</label>
<input type="password" class="form-control" id="exampleInputPassword1"
placeholder="Enter your password" style="background-color :#DCDCDC ;" required>
</div>
<div class="form-group">
<label for="exampleInputPassword1">Confirm Password</label>
<input type="password" class="form-control" id="exampleInputPassword2"
placeholder="Re-enter your Password" style="background-color :#DCDCDC ;" required>
</div>
<div class="modal-signin-container">
<button type="submit" class="btn btn-success btn-block">Sign Up</button>
</div>
</form>
</div>
</div>
</div>
</div>
</div>
<!-- ATTENTION: The HTML code for the list of posts has been given to you. You can feel free to add/delete/modify this code. You need to write the proper CSS and JavaScript code corresponding to this page so that the result looks like the screenshots given to you in the Project Statement. -->
<!-- list of all posts starts here -->
<div class="container">
<!-- post 1 starts here -->
<div class="card-new" id="card1">
<div class="side-square-wrapper">
<span class="side-square-wrapper-content" id="author1"> Srishti Gupta</span>
</div>
<div class="custom-card-body">
<div>
<div class="card-body-heading">
<span class="card-body-heading-content" id="heading1">‘let’ me be a ‘const’(ant), not a ‘var’(iable)!</span>
<span class="trash-button" data-toggle="modal" data-target="#modalConfirmYesNo1">
<!-- TODO: Include Font Awesome icon for delete icon here -->
<i class="fa fa-trash fa-lg"></i>
</span>
</div>
</div>
<div class="post-text" id="content1">Since JavaScript does not have any type-checking, either of these keywords can be used to declare a variable of any type (datatype) in JavaScript. Though all the three keywords are used for the same purpose, they are different.</div>
<!-- TODO: Include Font Awesome icon for horizontal ellipsis icon here -->
<span class="ellipsis" onclick="openPost(author1,heading1,content1)">
<i style="font-size:24px" class="fa"></i>
</span>
</div>
<!--- Delete card modal-->
<div id="modalConfirmYesNo1" class="modal fade">
<div class="modal-dialog " style="height: 15px; width:350px;">
<div class="modal-content">
<div class="modal-header">
<h4 id="lblTitleConfirmYesNo" class="modal-title" style="font-size: 15px;">
Are you sure you want to delete this post?</h4>
</div>
<div class="modal-footer">
<button id="btnYesConfirm" type="button" class="btn btn-success"
style="margin-right: 200px;" data-dismiss="modal"
onclick="removeCard('card1')">Yes</button>
<button id="btnNoConfirmYesNo" type="button" class="btn btn-danger"
data-dismiss="modal">No</button>
</div>
</div>
</div>
</div>
</div>
<!-- post 1 ends here -->
<!-- post 2 starts here -->
<div class="card-new" id="card2">
<div class="side-square-wrapper">
<span class="side-square-wrapper-content" id="author2"> Colby Fayock</span>
</div>
<div class="custom-card-body">
<div>
<div class="card-body-heading">
<span class="card-body-heading-content" id="heading2">What is linting and how can it save you
time?</span>
<span class="trash-button" data-toggle="modal" data-target="#modalConfirmYesNo2">
<!-- TODO: Include Font Awesome icon for delete icon here -->
<i class="fa fa-trash fa-lg"></i>
</span>
</div>
</div>
<div class="post-text" id="content2">One of the biggest challenges in software development is time.
It’s something we can’t easily get more of, but linting can help us make the most out
of the time we have.</div>
<!-- TODO: Include Font Awesome icon for horizontal ellipsis icon here -->
<span class="ellipsis" onclick="openPost(author2,heading2,content2)">
<i style="font-size:24px" class="fa"></i>
</span>
</div>
<!--- Delete card modal-->
<div id="modalConfirmYesNo2" class="modal fade">
<div class="modal-dialog " style="height: 15px; width:350px;">
<div class="modal-content">
<div class="modal-header">
<h4 id="lblTitleConfirmYesNo" class="modal-title" style="font-size: 15px;">
Are you sure you want to delete this post?</h4>
</div>
<div class="modal-footer">
<button id="btnYesConfirm" type="button" class="btn btn-success"
style="margin-right: 200px;" data-dismiss="modal"
onclick="removeCard('card2')">Yes</button>
<button id="btnNoConfirmYesNo" type="button" class="btn btn-danger"
data-dismiss="modal">No</button>
</div>
</div>
</div>
</div>
</div>
<!-- post 2 ends here -->
<!-- post 3 starts here -->
<div class="card-new" id="card3">
<div class="side-square-wrapper">
<span class="side-square-wrapper-content" id="author3">
Yazeed Bzadough
</span>
</div>
<div class="custom-card-body">
<div>
<div class="card-body-heading">
<span class="card-body-heading-content" id="heading3">How to Get More Views on Your Tech
Blog</span>
<span class="trash-button" data-toggle="modal" data-target="#modalConfirmYesNo3">
<!-- TODO: Include Font Awesome icon for delete icon here -->
<i class="fa fa-trash fa-lg"></i>
</span>
</div>
</div>
<div class="post-text" id="content3">If you're a developer with a Twitter account,
you've already seen everyone and their cat start a blog, YouTube channel, or Patreon.
We all want to become stars, or at the very least, a recognizable name in the industry.</div>
<!-- TODO: Include Font Awesome icon for horizontal ellipsis icon here -->
<span class="ellipsis" onclick="openPost(author3,heading3,content3)">
<i style="font-size:24px" class="fa"></i>
</span>
</div>
<!--- Delete card modal-->
<div id="modalConfirmYesNo3" class="modal fade">
<div class="modal-dialog " style="height: 15px; width:350px;">
<div class="modal-content">
<div class="modal-header">
<h4 id="lblTitleConfirmYesNo" class="modal-title" style="font-size: 15px;">
Are you sure you want to delete this post?</h4>
</div>
<div class="modal-footer">
<button id="btnYesConfirm" type="button" class="btn btn-success"
style="margin-right: 200px;" data-dismiss="modal"
onclick="removeCard('card3')">Yes</button>
<button id="btnNoConfirmYesNo" type="button" class="btn btn-danger"
data-dismiss="modal">No</button>
</div>
</div>
</div>
</div>
</div>
<!-- post 3 ends here -->
<!-- post 4 starts here -->
<div class="card-new" id="card4">
<div class="side-square-wrapper">
<span class="side-square-wrapper-content" id="author4">
Cedd Burge
</span>
</div>
<div class="custom-card-body">
<div>
<div class="card-body-heading">
<span class="card-body-heading-content" id="heading4">How to write easily describable
code</span>
<span class="trash-button" data-toggle="modal" data-target="#modalConfirmYesNo4">
<!-- TODO: Include Font Awesome icon for delete icon here -->
<i class="fa fa-trash fa-lg"></i>
</span>
</div>
</div>
<div class="post-text" id="content4">When code is not describable using words, most people have to do
some mental mapping to turn it in to words. This wastes mental energy, and you run the risk of
getting the mapping wrong. Different people will map to different words, which
leads to confusion when discussing the code.</div>
<!-- TODO: Include Font Awesome icon for horizontal ellipsis icon here -->
<div class="ellipsis" onclick="openPost(author4,heading4,content4)">
<i style="font-size:24px" class="fa"></i>
</div>
</div>
<!--- Delete card modal-->
<div id="modalConfirmYesNo4" class="modal fade">
<div class="modal-dialog " style="height: 15px; width:350px;">
<div class="modal-content">
<div class="modal-header">
<h4 id="lblTitleConfirmYesNo" class="modal-title" style="font-size: 15px;">Are you sure you
want to delete this post?</h4>
</div>
<div class="modal-footer">
<button id="btnYesConfirm" type="button" class="btn btn-success"
style="margin-right: 200px;" data-dismiss="modal"
onclick="removeCard('card4')">Yes</button>
<button id="btnNoConfirmYesNo" type="button" class="btn btn-danger"
data-dismiss="modal">No</button>
</div>
</div>
</div>
</div>
</div>
<!-- post 4 ends here -->
<!-- post 5 starts here -->
<div class="card-new" id="card5">
<div class="side-square-wrapper">
<span class="side-square-wrapper-content" id="author5">
Srishti Gupta
</span>
</div>
<div class="custom-card-body">
<div>
<div class="card-body-heading">
<span class="card-body-heading-content" id="heading5">Everything you should know about
‘module’ & ‘require’ in Node.js</span>
<span class="trash-button" data-toggle="modal" data-target="#modalConfirmYesNo5">
<!-- TODO: Include Font Awesome icon for delete icon here -->
<i class="fa fa-trash fa-lg"></i>
</span>
</div>
</div>
<div class="post-text" id="content5">Node.js treats each JavaScript file as a separate module. For
instance, if you have a file containing some code and this file is named xyz.js, then this file is
treated as a module in Node, and you can say that you’ve created a module
named xyz.</div>
<!-- TODO: Include Font Awesome icon for horizontal ellipsis icon here -->
<span class="ellipsis" onclick="openPost(author5,heading5,content5)">
<i style="font-size:24px" class="fa"></i>
</span>
</div>
<!--- Delete card modal-->
<div id="modalConfirmYesNo5" class="modal fade">
<div class="modal-dialog " style="height: 15px; width:350px;">
<div class="modal-content">
<div class="modal-header">
<h4 id="lblTitleConfirmYesNo" class="modal-title" style="font-size: 15px;">Are you sure you
want to delete this post?</h4>
</div>
<div class="modal-footer">
<button id="btnYesConfirm" type="button" class="btn btn-success"
style="margin-right: 200px;" data-dismiss="modal"
onclick="removeCard('card5')">Yes</button>
<button id="btnNoConfirmYesNo" type="button" class="btn btn-danger"
data-dismiss="modal">No</button>
</div>
</div>
</div>
</div>
</div>
<!-- post 5 ends here -->
</div>
<!-- list of all posts ends here -->
<script src="https://code.jquery.com/jquery-3.4.1.slim.min.js"
integrity="sha384-J6qa4849blE2+poT4WnyKhv5vZF5SrPo0iEjwBvKU7imGFAV0wwj1yYfoRSJoZ+n"
crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js"
integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/js/bootstrap.min.js"
integrity="sha384-wfSDF2E50Y2D1uUdj0O3uMBJnjuUD4Ih7YwaYd1iqfktj0Uod8GCExl3Og8ifwB6"
crossorigin="anonymous"></script>
<script src="../scripts/postslist.js"></script>
</body>
</html>