-
Notifications
You must be signed in to change notification settings - Fork 0
/
post.html
406 lines (372 loc) · 19.3 KB
/
post.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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.15.1/css/all.css" integrity="sha384-vp86vTRFVJgpjF9jiIGPEEqYqlDwgyBgEF109VFjmqGmIY/Y4HV4d3Gp2irVfcrp" crossorigin="anonymous">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<link rel="stylesheet" type="text/css" href="css/post.css">
<!-- jQuery -->
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function() {
$(".fa-search").click(function() {
$(".icon").toggleClass("active");
$("input[type='search']").toggleClass("active");
})
})
function openLoginForm() {
document.body.classList.add("showLoginForm");
}
function closeLoginForm() {
document.body.classList.remove("showLoginForm");
}
function openLogoutForm() {
document.body.classList.add("showLogoutForm");
}
function closeLogoutForm() {
document.body.classList.remove("showLogoutForm");
}
</script>
<title>StarLigHTs: Blog Post - Judul Artikel</title>
</head>
<body>
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="index.html">
<img src="img/logo.webp" width="30" height="30" class="d-inline-block align-top" alt=""> StarLigHTs
</a>
<button class="navbar-toggler custom-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto">
<li class="nav-item">
<a class="nav-link" href="index.html">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="blog.html">Blog Post</a>
</li>
<li class="nav-item">
<a class="nav-link" href="about.html">Tentang Kami</a>
</li>
</ul>
<div class="searchbar">
<form class="form-horizontal my-2 my-md-0 search-form" [formGroup]="searchForm" role="form" (keyup.enter)="onSubmit()">
<input class="form-control" type="search" placeholder="Search" aria-label="Search">
<div class="icon" type="submit">
<i class="fas fa-search"></i>
</div>
</form>
</div>
<ul class="navbar-nav">
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdownMenuLink" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<img src="img/profile.svg" width="40" height="40" class="rounded-circle" style="object-fit: cover;">
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdownMenuLink">
<a class="dropdown-item" href="register.html">Sign Up</a>
<a class="dropdown-item" href="profile-setting.html">Profile</a>
<a class="dropdown-item" href="login.html">Log In</a>
<a class="dropdown-item" href="#">Log Out</a>
</div>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Awal Jumbotron -->
<div id="hero-section">
<div class="container">
<div id="head-line">
<h1>StarLigHTs</h1>
</div>
</div>
<ul class="bg-bubbles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
</div>
<!-- Akhir Jumbotron -->
<!-- Tanda -->
<div class="container">
<div class="alert alert-warning alert-dismissible fade show mt-4" role="alert">
<strong>Selamat Datang!</strong> Web ini sedang dalam proses pengembangan
<button type="button" class="close" data-dismiss="alert" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
</div>
<!-- Akhir Tanda -->
<!-- Awal Content -->
<div class="container">
<div class="row">
<div class="col-lg-10 col-md-8">
<nav aria-label="breadcrumb">
<ol class="breadcrumb mt-3">
<li class="breadcrumb-item"><a href="index.html">Home</a></li>
<li class="breadcrumb-item"><a href="blog.html">Blog Post</a></li>
<li class="breadcrumb-item active">Judul Postingan</li>
</ol>
</nav>
</div>
<div class="col-lg-2 col-md-4">
<nav aria-label="breadcrumb">
<ol class="breadcrumb mt-3">
<div class="card-dm">
<div class="custom-control custom-switch">
<input type="checkbox" class="custom-control-input" id="darkSwitch" />
<label class="custom-control-label" for="darkSwitch">Dark</label>
</div>
</div>
</ol>
</nav>
</div>
</div>
<div class="row">
<div class="col-md-12 mb-6">
<!-- Awal col-8 -->
<div class="card border-0 mb-4">
<div class="card-body">
<h2>Judul Postingan</h2>
<a href="#0" class="badge badge-primary"><i class="fas fa-tags" aria-hidden="true"></i>
Category</a>
<div><a href="#0">Admin Name</a></div>
<div>Posted on: <time datetime="02-12-2020T10:24">Rabu 02, 2020 at 10:24 AM</time></div>
<figure class="service text-center mt-3">
<div class="svcimg">
<img src="http://placehold.it/1920x1080" class="figure-img img-fluid rounded" alt="Gambar Postingan">
<div class="overlay"></div>
</div>
<figcaption class="figure-caption text-center">Keterangan Gambar</figcaption>
</figure>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor
in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor
in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</p>
<table class="table">
<thead class="thead-light">
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
</tr>
</tbody>
</table>
</div>
<!--comment-->
<div class="container">
<div class="col-md-12 card mb-4 mt3">
<div class="card-body shadow p-3">
<h2>3 comments</h2>
<div class="comments" style="padding: 10px;">
<p class="font-weight-bold">
Anonymous
<span class=" text-muted font-weight-normal">
3 Des. 2020, 22.31
</span>
</p>
<p>Nice Post</p>
</div>
<div class="comments" style="padding: 10px;">
<p class="font-weight-bold">
Amri
<span class=" text-muted font-weight-normal">
4 Des. 2020, 19.46
</span>
</p>
<p>Test</p>
</div>
<div class="comments" style="padding: 10px;">
<p class="font-weight-bold">
Reza
<span class=" text-muted font-weight-normal">
4 Des. 2020, 19.46
</span>
</p>
<p>Test 2</p>
</div>
</div>
</div>
<div class="col-md-12 card mb-4 mt-3 ">
<div class="card-body shadow p-3">
<h3>Leave a comment</h3>
<form method="post" style="margin-top: 1.3em;">
<div id="div_id_name" class="form-group"> <label for="id_name" class=" requiredField">
Nama<span class="asteriskField">*</span> </label>
<div class=""> <input type="text" name="name" maxlength="80" class="textinput textInput form-control" required id="id_name"> </div>
</div>
<div id="div_id_email" class="form-group"> <label for="id_email" class=" requiredField">
Email<span class="asteriskField">*</span> </label>
<div class=""> <input type="email" name="email" maxlength="254" class="emailinput form-control" required id="id_email"> </div>
</div>
<div id="div_id_body" class="form-group"> <label for="id_body" class=" requiredField">
Komentar<span class="asteriskField">*</span> </label>
<div class=""> <textarea name="body" cols="40" rows="10" class="textarea form-control" required id="id_body"></textarea> </div>
</div>
<input type="hidden" name="csrfmiddlewaretoken" value="xasjWZgjnlXGDG29AsZli4Z0FkCr4vemnxGpfymQS2Hm1nNgcbQc2kEzzqoT4D9H">
<button type="submit" class="btn btn-primary btn-lg">Submit</button>
</form>
</div>
</div>
</div>
<!-- Akhir Comment-->
</div>
</div>
<!-- Akhir col-8 -->
<!--<div class="col-md-4 mb-4">
<h5>Tutorial Terbaru</h5>
<div class="list-group">
<a href="#" class="list-group-item list-group-item-action active">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">Judul Postingan</h5>
<small>3 days ago</small>
</div>
<p class="mb-1">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus
varius blandit.</p>
<small>Maulana Firmansyah</small>
</a>
<a href="#" class="list-group-item list-group-item-action">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">Judul Postingan</h5>
<small class="text-muted">3 days ago</small>
</div>
<p class="mb-1">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus
varius blandit.</p>
<small>Maulana Firmansyah</small>
</a>
<a href="#" class="list-group-item list-group-item-action">
<div class="d-flex w-100 justify-content-between">
<h5 class="mb-1">Judul Postingan</h5>
<small class="text-muted">3 days ago</small>
</div>
<p class="mb-1">Donec id elit non mi porta gravida at eget metus. Maecenas sed diam eget risus
varius blandit.</p>
<small>Amri Reza Wahyudin</small>
</a>
</div>
<div class="card mb-3 border-0 shadow p-3">
<div class="card-body bg-light">
<h5>Categories</h5>
<div class="list-group">
<a href="#0" class="list-group-item list-group-item-action bg-primary text-white">Category</a>
<a href="#0" class="list-group-item list-group-item-action bg-success text-white">Category</a>
<a href="#0" class="list-group-item list-group-item-action bg-danger text-white">Category</a>
<a href="#0" class="list-group-item list-group-item-action bg-warning text-white">Category</a>
<a href="#0" class="list-group-item list-group-item-action bg-info text-white">Category</a>
</div>
</div>
</div>
<div class="card mb-3 border-0 shadow p-3">
<div class="card-body bg-light">
<h5>Developer</h5>
</p>
</div>
</div>
</div>
Akhir col-4 -->
</div>
</div>
<!-- Akhir Content -->
<!-- Awal Jumbotron 2 -->
<div id="hero-section2">
<ul class="bg-bubbles">
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
</ul>
<div class="hero-content container">
<h2 class="hero-title">
<span>GET IN TOUCH</span>
</h2>
<p class="hero-description">Follow Social Media Kami di</p>
<div id="social-headers">
<ul>
<li class="fb-item">
<a href="#"><i class="fab fa-facebook-square"></i>
</a>
</li>
<li class="twitter-item">
<a href="#"><i class="fab fa-twitter-square"></i>
</a>
</li>
<li class="github-item">
<a href="#"><i class="fab fa-github-square"></i>
</a>
</li>
<li class="instagram-item">
<a href="#"><i class="fab fa-instagram-square"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
<!-- Akhir Jumbotron 2 -->
<!-- Awal Footer -->
<footer class="background">
<div class="text text-center pt-3 pb-3" style="font-weight: 500;">
© Copyright 2020 | StarLigHTs Team
</div>
</footer>
<!-- Akhir Footer -->
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-9/reFTGAW83EW2RDu2S0VKaIzap3H66lZH81PoYlFhbGU+6BZp6G7niu735Sk7lN" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-w1Q4orYjBQndcko6MimVbzY0tgp4pWB4lZ7lr30WKz0vr/aWKhXdBNmNb5D92v7s" crossorigin="anonymous"></script>
<script>
// Reply box popup JS
$(document).ready(function() {
$(".reply-popup").click(function() {
$(".reply-box").toggle();
});
});
</script>
<script src="js/dark-mode-switch.min.js"></script>
</body>
</html>