-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdetail.html
More file actions
547 lines (538 loc) · 29.9 KB
/
detail.html
File metadata and controls
547 lines (538 loc) · 29.9 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
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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
<!DOCTYPE html>
<html lang="en">
<head>
<title>BLOG</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link href="https://fonts.googleapis.com/css?family=Hind:300,400,500,600,700&display=swap" rel="stylesheet">
</head>
<body>
<div class="page-wrapper chiller-theme">
<nav id="sidebar" class="sidebar-wrapper">
<div class="sidebar-content">
<div class="sidebar-brand">
<a href="#">
<img src="images/logo.png">
</a>
<div id="close-sidebar">
<i class="fa fa-times"></i>
</div>
</div>
<div class="sidebar-header">
<div class="user-pic">
<img class="img-responsive img-rounded" src="https://raw.githubusercontent.com/azouaoui-med/pro-sidebar-template/gh-pages/src/img/user.jpg"
alt="User picture">
</div>
<div class="user-info">
<span class="user-name">Jhon
<strong>Smith</strong>
</span>
<span class="user-role">Administrator</span>
<span class="user-status">
<i class="fa fa-circle"></i>
<span>Online</span>
</span>
</div>
</div>
<!-- sidebar-header -->
<div class="sidebar-search">
<div>
<div class="input-group">
<input type="text" class="form-control search-menu" placeholder="Search...">
<div class="input-group-append">
<span class="input-group-text">
<i class="fa fa-search" aria-hidden="true"></i>
</span>
</div>
</div>
</div>
</div>
<!----- sidebar-search ----->
<div class="sidebar-menu">
<ul>
<li>
<a href="index.html">
<i class="fa fa-home"></i>
<span>INDEX</span>
</a>
</li>
<li>
<a href="home.html">
<i class="fa fa-home"></i>
<span>HOME</span>
</a>
</li>
<li>
<a href="about.html">
<i class="fa fa-info-circle"></i>
<span>ABOUT US</span>
</a>
</li>
<li>
<a href="detail.html">
<i class="fa fa-eye"></i>
<span>DETAIL</span>
</a>
</li>
<li>
<a href="contact.html">
<i class="fa fa-map"></i>
<span>CONTACT US</span>
</a>
</li>
<li>
<a href="404.html">
<i class="fa fa-cog"></i>
<span>404</span>
</a>
</li>
</ul>
</div>
<!-- sidebar-menu -->
</div>
</nav>
</div>
<header>
<nav class="navbar navbar-expand bg-dark navbar-dark p-0">
<div class="container-fluid">
<div class="collapse navbar-collapse" >
<ul class="navbar-nav">
<li class="nav-item ">
<a id="show-sidebar" class="nav-link" href="#">
<span class="fa fa-bars"></span>
</a>
</li>
</ul>
<ul class="navbar-nav mx-auto">
<a class="" href="#">
<img src="images/logo.png">
</a>
</ul>
<ul class="navbar-nav social-media">
<li class="nav-item">
<a class="nav-link border-right-0" href="#">
<span class="fa fa-rss"></span>
</a>
</li>
<li class="nav-item border-right-0">
<a class="nav-link border-right-0" href="#">
<span class="fa fa-twitter"></span>
</a>
</li>
<li class="nav-item ">
<a class="nav-link border-right-0" href="#">
<span class="fa fa-tumblr"></span>
</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">
<span class="fa fa-facebook"></span>
</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<section class="home">
<div class="container-fluid">
<div class="bg-img">
<div class="row">
<div class="col-10 col-sm-11">
<div class="bg-img-text">
<p>Latest News</p>
<h1>Body Building best <br> for you health</h1>
</div>
</div>
<div class="col-2 col-sm-1">
<div class="text-angle-padding"></div>
<div class="angle-text">
<p class="angle-90">Featured Article</p>
</div>
</div>
</div>
</div>
<div class="subscribe shadow-sm">
<div class="row">
<div class="col-lg-2 col-sm-6">
<p>Signup to<br>
Newsletter</p>
</div>
<div class="col-lg-4 col-sm-6">
<div class="py-2">
<input type="text" class="form-control" placeholder="YOUR NAME">
</div>
</div>
<div class="col-lg-4 col-sm-6">
<div class="py-2">
<input type="text" class="form-control" placeholder="YOUR EMAIL ADDRESS">
</div>
</div>
<div class="col-lg-2 col-sm-6">
<div class="py-2">
<button>
Subscribe Now
</button>
</div>
</div>
</div>
</div>
</div>
</section>
<section class="main-home">
<div class="container-fluid">
<div class="row">
<div class="col-md-7 col-xl-9">
<!-- //////////////////Post ///////////////// -->
<div>
<img src="images/home=2.jpg" class="w-100">
</div>
<div class="post-home-1">
<span class="fa fa-image top-m-icon shadow-sm"></span>
<div class="post-body">
<p class="heading-top">Travelling</p>
<h4>Travel besT Adventure</h4>
<div class="row">
<div class="col-md-6">
<p class="text-right heading-bottom"><span class="fa fa-user"></span> SUAVIS TECNOLOGY</p>
</div>
<div class="col-md-6">
<p class="text-left heading-bottom"><span class="fa fa-calendar"></span> January 25, 2016</p>
</div>
</div>
<p class="text">
This is Photoshop's version now we’s of Lorem Ipsum. Proin gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi eiilit consequat ipsum, nec sagittis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsans ipsum velit. Nam nec tellus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti have a great is the best sociosqu ad litora torquent per conubia nostra.</p>
<p> Exercitation photo booths stumptowns totes bag Banksy, elit small batch
bit kale chips proident chillwave have a great work deep haves laborum.</p><p>
Proins gravida nibh vel velit auctor aliquet. Aenean sollicitudin, lorem quis bibendum auctor, nisi elit consequat ipsum, nec sagitgitis sem nibh id elit. Duis sed odio sit amet nibh vulputate cursus a sit amet mauris. Morbi accumsan ipsum velit. Nam nec terzllus a odio tincidunt auctor a ornare odio. Sed non mauris vitae erat consequat auctor eu in elit. Class aptent taciti Duis aute irure dolor in reprehenderit in voluptate velit. Qui officia deserunt mollit anim id est labosasirum. Corrupti quosalores et quas molestias excepturi sint occaecati. Facere possimus, omnis voluptas assumenda have esOmnis dolor repellendus. Ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis.Et harum quidem the odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque.sociosqu ad litora torquent per conubia nostra.</p><p>
What a crowded bazaar! There were large crowds of people at the shops. There were motor cars, rickshaws, scooters and taxies. The has buses, too, were plying up and own the bazaar. We kept to the foot-path. Soon we were at the Fountain. There we is th saw the Gurdwara Sis Ganj with its golden dome. A large number of devotees were going in or coming out.</p><p>
We moved on. There were shops dealing in all sorts of goods. There were the cloth merchants, chemists, jewellers, confectioners1, tobaccoonists, leather goods merchants, wine merchants, gramophone dealers, radio shops and shops dealing in general merchandise. The show cases exhibited the goods in style to great idea gave a so much tempt us.
</p>
<button>
Read More
</button>
</div>
<div class="post-footer px-5">
<div class="row">
<div class="col-4 text-left">
<p class="float-left"><span class="fa fa-comment"></span> No Comment</p>
<p class="float-left ml-4"><span class="fa fa-heart"></span> Likes 25</p>
</div>
<div class="col-4">
<p class="text-center ml-4"> Average : 5%
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
<span class="fa fa-star"></span>
</p>
</div>
<div class="col-4">
<div class="post-social text-right">
<ul>
<li><a href="#"><span class="fa fa-rss"></span></a></li>
<li><a href="#"><span class="fa fa-facebook"></span></a></li>
<li><a href="#"><span class="fa fa-twitter"></span></a></li>
<li><a href="#"><span class="fa fa-pinterest"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="post-angle">
<div class="row">
<div class="col-md-6">
<div class="Previous-post">
<p><span class="fa fa-long-arrow-left"></span> Previous post</p>
</div>
</div>
<div class="col-md-6">
<div class="Next-post">
<p> Next post <span class="fa fa-long-arrow-right"></span></p>
</div>
</div>
</div>
</div>
<div class="all-post">
<div class="media bg-white">
<img src="images/detail-1.jpg" alt="John Doe" >
<div class="media-body px-4 py-4">
<h4 class="mb-4">Michell Beverly <span>All post</span></h4>
<hr>
<p class="m-0">Patricia gives you the ability to let people actually read have your content, instead of focusing on all the other stuff that’s going on their screen.</p>
</div>
</div>
</div>
<div class="detail-social">
<div class="row">
<div class="col-md-3">
<div class="icon-social">
<div class="icon-left">
<span class="fa fa-facebook"></span>
</div>
<div class="likes">
<p>Facebook 28</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="icon-social">
<div class="icon-left">
<span class="fa fa-twitter"></span>
</div>
<div class="likes">
<p>Twitter 28</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="icon-social">
<div class="icon-left">
<span class="fa fa-tumblr"></span>
</div>
<div class="likes">
<p>tumbler 28</p>
</div>
</div>
</div>
<div class="col-md-3">
<div class="icon-social">
<div class="icon-left">
<span class="fa fa-pinterest"></span>
</div>
<div class="likes">
<p>pinterest 28</p>
</div>
</div>
</div>
</div>
</div>
<div class="recomended-posts">
<div class="row">
<div class="col-md-6">
<p>Recomended Posts</p>
</div>
<div class="col-md-6 text-right">
<span class="fa fa-long-arrow-left "></span>
<span class="fa fa-long-arrow-right"></span>
</div>
<div class="col-md-4 text-center">
<img src="images/detail-2.jpg" class="w-100 pb-4" >
<p class="font-weight-bold">girl on car vintage fashion </p>
</div>
<div class="col-md-4 text-center">
<img src="images/detail-2.jpg" class="w-100 pb-4" >
<p class="font-weight-bold">women make a tea for cup </p>
</div>
<div class="col-md-4 text-center">
<img src="images/detail-2.jpg" class="w-100 pb-4" >
<p class="font-weight-bold">i found the model 1980’s car </p>
</div>
</div>
</div>
</div>
<div class="col-md-5 col-xl-3">
<div class="right-post">
<div class="search-post">
<div class="">
<div class="input-group mb-5">
<input type="text" class="form-control" placeholder="SEARCH" >
<div class="input-group-append">
<span class="input-group-text">
<span class="fa fa-search"></span>
</span>
</div>
</div>
</div>
</div>
<div class="right-post-cat">
<img src="images/home-1.jpg" class="w-100">
<div class="Catagories">
<h5>Catagories</h5>
<table class="table">
<tbody>
<tr>
<td class="text-left">lifestyle</td>
<td class="text-right">98</td>
</tr>
<tr>
<td class="text-left">Audio</td>
<td class="text-right">102</td>
</tr>
<tr>
<td class="text-left">Gallery</td>
<td class="text-right">83</td>
</tr>
<tr>
<td class="text-left">Image</td>
<td class="text-right">04</td>
</tr>
<tr>
<td class="text-left">Standard</td>
<td class="text-right">109</td>
</tr>
<tr>
<td class="text-left">Status</td>
<td class="text-right">50</td>
</tr>
<tr>
<td class="text-left">Video</td>
<td class="text-right">102</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="right-post-cat">
<img src="images/home-2.jpg" class="w-100">
<div class="Latest-Post">
<h5>Latest Post</h5>
<div class="row py-3">
<div class="col-4">
<img src="images/home-latest.png" class="w-100">
</div>
<div class="col-8">
<h6>jurney towards a lifestyle</h6>
<span class="float-left">Jan. 16 2015</span>
<span class="float-right">Like 255</span>
</div>
</div>
<div class="row py-3">
<div class="col-4">
<img src="images/home-latest.png" class="w-100">
</div>
<div class="col-8">
<h6>jurney towards a lifestyle</h6>
<span class="float-left">Jan. 16 2015</span>
<span class="float-right">Like 255</span>
</div>
</div>
<div class="row py-3">
<div class="col-4">
<img src="images/home-latest.png" class="w-100">
</div>
<div class="col-8">
<h6>jurney towards a lifestyle</h6>
<span class="float-left">Jan. 16 2015</span>
<span class="float-right">Like 255</span>
</div>
</div>
<div class="row py-3">
<div class="col-4">
<img src="images/home-latest.png" class="w-100">
</div>
<div class="col-8">
<h6>jurney towards a lifestyle</h6>
<span class="float-left">Jan. 16 2015</span>
<span class="float-right">Like 255</span>
</div>
</div>
<div class="row py-3">
<div class="col-4">
<img src="images/home-latest.png" class="w-100">
</div>
<div class="col-8">
<h6>jurney towards a lifestyle</h6>
<span class="float-left">Jan. 16 2015</span>
<span class="float-right">Like 255</span>
</div>
</div>
<div class="float-left w-100 p-2">
<div class="home-post-social">
<ul>
<li><a href="#"><span class="fa fa-rss"></span></a></li>
<li><a href="#"><span class="fa fa-facebook"></span></a></li>
<li><a href="#"><span class="fa fa-twitter"></span></a></li>
<li><a href="#"><span class="fa fa-pinterest"></span></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="right-post-cat py-3">
<div id="demo" class="carousel slide" data-ride="carousel">
<!-- Indicators -->
<!-- The slideshow -->
<div class="carousel-inner">
<div class="carousel-item active">
<img src="https://www.w3schools.com/bootstrap4/chicago.jpg" alt="Los Angeles" class="w-100">
</div>
<div class="carousel-item">
<img src="https://www.w3schools.com/bootstrap4/la.jpg" alt="Chicago" class="w-100">
</div>
<div class="carousel-item">
<img src="https://www.w3schools.com/bootstrap4/ny.jpg" alt="New York" class="w-100">
</div>
</div>
<!-- Left and right controls -->
<a class="carousel-control-prev" href="#demo" data-slide="prev">
<span class="carousel-control-prev-icon"></span>
</a>
<a class="carousel-control-next" href="#demo" data-slide="next">
<span class="carousel-control-next-icon"></span>
</a>
</div>
</div>
<div class="right-post-cat py-3">
<img src="images/home-3.png" class="w-100">
</div>
</div>
</div>
</div>
</div>
</section>
<section class="blog-footer">
<div class="container-fluid">
<div class="row">
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="about-blog">
<h5>about blog</h5>
<p>
Lorem ipsum dolor sit amet, conser adipisicing esse cillum dolore nulla pariatur.
</p>
<img src="images/sign.jpg" class="w-100">
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="latest-tweets">
<h5>latest tweets</h5>
<p class="mail"><span class="fa fa-twitter"></span> @Twitter@magicalrebekah</p>
<p class="text">Developer Advocate @heyval isaiyou knows the very well is about things .</p>
<p class="mail"><span class="fa fa-twitter"></span> @Twitter@magicalrebekah</p>
<p class="text">Developer Advocate @heyval isaiyou knows the very well is about things .</p>
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="latest-tweets">
<h5>Follow me instagram</h5>
<img src="images/f1.jpg" class="float-left" style="padding: 3px;">
<img src="images/f2.jpg" class="float-left" style="padding: 3px;">
<img src="images/f3.jpg" class="float-left" style="padding: 3px;">
<img src="images/f4.jpg" class="float-left" style="padding: 3px;">
<img src="images/f5.png" class="float-left" style="padding: 3px;">
<img src="images/f6.jpg" class="float-left" style="padding: 3px;">
</div>
</div>
<div class="col-lg-3 col-md-6 col-sm-6">
<div class="latest-comment">
<h5>latest comment</h5>
<p class="mail"> From Alex : </p>
<p class="text">Developer Advocate @heyval isaiyou know the very well is talking about things.</p>
<hr style="border-color:#65676a">
<p class="mail">From Jhon Doe :</p>
<p class="text">Developer Advocate @heyval isaiyou knows the very well is about things .</p>
</div>
</div>
</div>
</div>
</section>
</body>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js"></script>
<script src="js/custom.js"></script>
</html>