-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathothers.php
More file actions
617 lines (520 loc) · 24.3 KB
/
others.php
File metadata and controls
617 lines (520 loc) · 24.3 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
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Campus Online</title>
<meta name="keywords" content="WebSite Template" />
<meta name="description" content="Porto - Multipurpose Website Template">
<meta name="author" content="okler.net">
<!-- Favicon -->
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
<link rel="apple-touch-icon" href="img/apple-touch-icon.png">
<!-- Mobile Metas -->
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1.0, shrink-to-fit=no">
<!-- Web Fonts -->
<link id="googleFonts" href="https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700,800%7CShadows+Into+Light%7CPlayfair+Display:400&display=swap" rel="stylesheet" type="text/css">
<!-- Vendor CSS -->
<link rel="stylesheet" href="vendor/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="vendor/fontawesome-free/css/all.min.css">
<link rel="stylesheet" href="vendor/animate/animate.compat.css">
<link rel="stylesheet" href="vendor/simple-line-icons/css/simple-line-icons.min.css">
<link rel="stylesheet" href="vendor/owl.carousel/assets/owl.carousel.min.css">
<link rel="stylesheet" href="vendor/owl.carousel/assets/owl.theme.default.min.css">
<link rel="stylesheet" href="vendor/magnific-popup/magnific-popup.min.css">
<link rel="stylesheet" href="vendor/bootstrap-star-rating/css/star-rating.min.css">
<link rel="stylesheet" href="vendor/bootstrap-star-rating/themes/krajee-fas/theme.min.css">
<!-- Theme CSS -->
<link rel="stylesheet" href="css/theme.css">
<link rel="stylesheet" href="css/theme-elements.css">
<link rel="stylesheet" href="css/theme-blog.css">
<link rel="stylesheet" href="css/theme-shop.css">
<!-- Skin CSS -->
<link id="skinCSS" rel="stylesheet" href="css/skins/default.css">
<!-- Theme Custom CSS -->
<link rel="stylesheet" href="css/custom.css">
<style>
body::after {
content: "";
display: table;
clear: both;
background-color: lightgreen;
}
.left-section {
float: left;
width: 30%;
/* Takes up 1/3 of the available space */
box-sizing: border-box;
}
.left-section-top {
background-color: white;
color: black;
text-align: center;
padding: 20px;
margin: 5px;
min-height: 40px;
max-height: 70px;
line-height: 70px;
/* Set line-height equal to max-height to vertically center text */
display: flex;
align-items: center;
justify-content: center;
border-radius: 5px;
margin-left: 30px;
}
.left-section-top img {
vertical-align: middle;
/* Vertically center the image */
/* Adjust margin as needed */
margin-left: -70px;
/* Adjust margin as needed to move the image slightly to the left */
}
.left-section-top h4 {
margin: 0;
color: black;
/* Remove default margin for h1 */
}
.left-section-bottom {
background-color: white;
color: white;
text-align: center;
padding: 20px;
margin: 5px;
min-height: 300px;
border-radius: 5px;
margin-left: 30px;
}
.right-section {
float: left;
width: 70%;
/* Takes up 2/3 of the available space */
box-sizing: border-box;
}
.right-section-inner {
background-color: white;
/* Adjust the color as needed */
color: black;
/* Set the text color to be visible */
text-align: center;
/* Center the text horizontally */
padding: 20px;
margin: 5px;
margin-right: 200px;
border-radius: 5px;
margin-right: 40px;
margin-bottom: 20px;
}
.profile-menu {
list-style: none;
padding: 10px;
margin: 20px;
margin-right: 30px;
}
.profile-menu li {
margin-bottom: 20px;
margin-top: 20px;
}
.profile-menu a {
text-decoration: none !important;
/* Added !important */
color: #0088cc;
display: flex;
/* Use flex to align icon and text horizontally */
align-items: center;
/* Center items vertically */
padding: 10px;
border-radius: 5px;
transition: background-color 0.3s;
font-size: larger;
}
.profile-menu a svg {
margin-right: 10px;
/* Add margin to separate icon from text */
}
.profile-menu a:hover {
background-color: #0088cc;
color: white;
text-decoration: none !important;
/* Added !important */
}
.nav-link{
text-decoration: none !important;
align-items: center;
padding: 10px;
margin-bottom: 10px;
margin-top: 10px;
}
</style>
</head>
<body data-plugin-page-transition>
<?php include 'header.php'; ?>
<div class="body">
<div class="left-section">
<div class="left-section-bottom">
<aside class="sidebar">
<h5 class="font-weight-semi-bold pt-3" style="width: 100%;">Categories</h5>
<ul class="nav nav-list flex-column">
<li class="nav-item"><a class="nav-link" href="#">Books</a></li>
<li class="nav-item"><a class="nav-link" href="#">accessories</a></li>
<li class="nav-item"><a class="nav-link" href="#">Stationary</a></li>
<li class="nav-item"><a class="nav-link" href="#">Food</a></li>
<li class="nav-item"><a class="nav-link" href="#">Others</a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="right-section">
<div class="right-section-inner">
<div role="main" class="main shop pb-4">
<h4 style="text-align: center; color:#0088cc" >NoteBookst</h4>
<div class="masonry-loader masonry-loader-showing">
<div class="row products product-thumb-info-list" data-plugin-masonry data-plugin-options="{'layoutMode': 'fitRows'}">
<div class="col-sm-6 col-lg-4">
<div class="product mb-0">
<div class="product-thumb-info border-0 mb-3">
<div class="product-thumb-info-badges-wrapper">
<span class="badge badge-ecommerce text-bg-success">NEW</span>
</div>
<div class="addtocart-btn-wrapper">
<a href="shop-cart.html" class="text-decoration-none addtocart-btn" title="Add to Cart">
<i class="icons icon-bag"></i>
</a>
</div>
<a href="ajax/shop-product-quick-view.html" class="quick-view text-uppercase font-weight-semibold text-2">
QUICK VIEW
</a>
<a href="shop-product-sidebar-left.html">
<div class="product-thumb-info-image">
<img alt="" class="img-fluid" src="img/products/product-grey-1.jpg">
</div>
</a>
</div>
<div class="d-flex justify-content-between">
<div>
<a href="#" class="d-block text-uppercase text-decoration-none text-color-default text-color-hover-primary line-height-1 text-0 mb-1">electronics</a>
<h3 class="text-3-5 font-weight-medium font-alternative text-transform-none line-height-3 mb-0"><a href="shop-product-sidebar-right.html" class="text-color-dark text-color-hover-primary">Photo Camera</a></h3>
</div>
<a href="#" class="text-decoration-none text-color-default text-color-hover-dark text-4"><i class="far fa-heart"></i></a>
</div>
<div title="Rated 5 out of 5">
<input type="text" class="d-none" value="5" title="" data-plugin-star-rating data-plugin-options="{'displayOnly': true, 'color': 'default', 'size':'xs'}">
</div>
<p class="price text-5 mb-3">
<span class="sale text-color-dark font-weight-semi-bold">$69,00</span>
<span class="amount">$59,00</span>
</p>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="product mb-0">
<div class="product-thumb-info border-0 mb-3">
<div class="product-thumb-info-badges-wrapper">
<span class="badge badge-ecommerce text-bg-success">NEW</span>
<span class="badge badge-ecommerce text-bg-danger">27% OFF</span>
</div>
<div class="addtocart-btn-wrapper">
<a href="shop-cart.html" class="text-decoration-none addtocart-btn" title="Add to Cart">
<i class="icons icon-bag"></i>
</a>
</div>
<a href="ajax/shop-product-quick-view.html" class="quick-view text-uppercase font-weight-semibold text-2">
QUICK VIEW
</a>
<a href="shop-product-sidebar-left.html">
<div class="product-thumb-info-image product-thumb-info-image-effect">
<img alt="" class="img-fluid" src="img/products/product-grey-7.jpg">
<img alt="" class="img-fluid" src="img/products/product-grey-7-2.jpg">
</div>
</a>
</div>
<div class="d-flex justify-content-between">
<div>
<a href="#" class="d-block text-uppercase text-decoration-none text-color-default text-color-hover-primary line-height-1 text-0 mb-1">accessories</a>
<h3 class="text-3-5 font-weight-medium font-alternative text-transform-none line-height-3 mb-0"><a href="shop-product-sidebar-right.html" class="text-color-dark text-color-hover-primary">Porto Headphone</a></h3>
</div>
<a href="#" class="text-decoration-none text-color-default text-color-hover-dark text-4"><i class="far fa-heart"></i></a>
</div>
<div title="Rated 5 out of 5">
<input type="text" class="d-none" value="5" title="" data-plugin-star-rating data-plugin-options="{'displayOnly': true, 'color': 'default', 'size':'xs'}">
</div>
<p class="price text-5 mb-3">
<span class="sale text-color-dark font-weight-semi-bold">$199,00</span>
<span class="amount">$99,00</span>
</p>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="product mb-0">
<div class="product-thumb-info border-0 mb-3">
<div class="addtocart-btn-wrapper">
<a href="shop-cart.html" class="text-decoration-none addtocart-btn" title="Add to Cart">
<i class="icons icon-bag"></i>
</a>
</div>
<a href="ajax/shop-product-quick-view.html" class="quick-view text-uppercase font-weight-semibold text-2">
QUICK VIEW
</a>
<a href="shop-product-sidebar-left.html">
<div class="product-thumb-info-image">
<img alt="" class="img-fluid" src="img/products/product-grey-2.jpg">
</div>
</a>
</div>
<div class="d-flex justify-content-between">
<div>
<a href="#" class="d-block text-uppercase text-decoration-none text-color-default text-color-hover-primary line-height-1 text-0 mb-1">sports</a>
<h3 class="text-3-5 font-weight-medium font-alternative text-transform-none line-height-3 mb-0"><a href="shop-product-sidebar-right.html" class="text-color-dark text-color-hover-primary">Golf Bag</a></h3>
</div>
<a href="#" class="text-decoration-none text-color-default text-color-hover-dark text-4"><i class="far fa-heart"></i></a>
</div>
<div title="Rated 5 out of 5">
<input type="text" class="d-none" value="5" title="" data-plugin-star-rating data-plugin-options="{'displayOnly': true, 'color': 'default', 'size':'xs'}">
</div>
<p class="price text-5 mb-3">
<span class="sale text-color-dark font-weight-semi-bold">$29,00</span>
<span class="amount">$19,00</span>
</p>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="product mb-0">
<div class="product-thumb-info border-0 mb-3">
<div class="product-thumb-info-badges-wrapper">
<span class="badge badge-ecommerce text-bg-danger">27% OFF</span>
</div>
<div class="addtocart-btn-wrapper">
<a href="shop-cart.html" class="text-decoration-none addtocart-btn" title="Add to Cart">
<i class="icons icon-bag"></i>
</a>
</div>
<div class="countdown-offer-wrapper">
<div class="text-color-light negative-ls-05 text-2" data-plugin-countdown data-plugin-options="{'textDay': 'DAYS', 'textHour': 'HRS', 'textMin': 'MIN', 'textSec': 'SEC', 'date': '2025/01/01 12:00:00', 'numberClass': 'text-color-light', 'wrapperClass': 'text-color-light', 'insertHTMLbefore': '<span>OFFER ENDS IN </span>', 'textDay': 'DAYS', 'textHour': ':', 'textMin': ':', 'textSec': '', 'uppercase': true}"></div>
</div>
<a href="ajax/shop-product-quick-view.html" class="quick-view text-uppercase font-weight-semibold text-2">
QUICK VIEW
</a>
<a href="shop-product-sidebar-left.html">
<div class="product-thumb-info-image">
<img alt="" class="img-fluid" src="img/products/product-grey-3.jpg">
</div>
</a>
</div>
<div class="d-flex justify-content-between">
<div>
<a href="#" class="d-block text-uppercase text-decoration-none text-color-default text-color-hover-primary line-height-1 text-0 mb-1">sports</a>
<h3 class="text-3-5 font-weight-medium font-alternative text-transform-none line-height-3 mb-0"><a href="shop-product-sidebar-right.html" class="text-color-dark text-color-hover-primary">Workout</a></h3>
</div>
<a href="#" class="text-decoration-none text-color-default text-color-hover-dark text-4"><i class="far fa-heart"></i></a>
</div>
<div title="Rated 5 out of 5">
<input type="text" class="d-none" value="5" title="" data-plugin-star-rating data-plugin-options="{'displayOnly': true, 'color': 'default', 'size':'xs'}">
</div>
<p class="price text-5 mb-3">
<span class="sale text-color-dark font-weight-semi-bold">$40,00</span>
<span class="amount">$30,00</span>
</p>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="product mb-0">
<div class="product-thumb-info border-0 mb-3">
<div class="addtocart-btn-wrapper">
<a href="shop-cart.html" class="text-decoration-none addtocart-btn" title="Add to Cart">
<i class="icons icon-bag"></i>
</a>
</div>
<a href="ajax/shop-product-quick-view.html" class="quick-view text-uppercase font-weight-semibold text-2">
QUICK VIEW
</a>
<a href="shop-product-sidebar-left.html">
<div class="product-thumb-info-image">
<img alt="" class="img-fluid" src="img/products/product-grey-4.jpg">
</div>
</a>
</div>
<div class="d-flex justify-content-between">
<div>
<a href="#" class="d-block text-uppercase text-decoration-none text-color-default text-color-hover-primary line-height-1 text-0 mb-1">accessories</a>
<h3 class="text-3-5 font-weight-medium font-alternative text-transform-none line-height-3 mb-0"><a href="shop-product-sidebar-right.html" class="text-color-dark text-color-hover-primary">Luxury Bag</a></h3>
</div>
<a href="#" class="text-decoration-none text-color-default text-color-hover-dark text-4"><i class="far fa-heart"></i></a>
</div>
<div title="Rated 5 out of 5">
<input type="text" class="d-none" value="5" title="" data-plugin-star-rating data-plugin-options="{'displayOnly': true, 'color': 'default', 'size':'xs'}">
</div>
<p class="price text-5 mb-3">
<span class="sale text-color-dark font-weight-semi-bold">$99,00</span>
<span class="amount">$79,00</span>
</p>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="product mb-0">
<div class="product-thumb-info border-0 mb-3">
<div class="addtocart-btn-wrapper">
<a href="shop-cart.html" class="text-decoration-none addtocart-btn" title="Add to Cart">
<i class="icons icon-bag"></i>
</a>
</div>
<a href="ajax/shop-product-quick-view.html" class="quick-view text-uppercase font-weight-semibold text-2">
QUICK VIEW
</a>
<a href="shop-product-sidebar-left.html">
<div class="product-thumb-info-image">
<img alt="" class="img-fluid" src="img/products/product-grey-5.jpg">
</div>
</a>
</div>
<div class="d-flex justify-content-between">
<div>
<a href="#" class="d-block text-uppercase text-decoration-none text-color-default text-color-hover-primary line-height-1 text-0 mb-1">accessories</a>
<h3 class="text-3-5 font-weight-medium font-alternative text-transform-none line-height-3 mb-0"><a href="shop-product-sidebar-right.html" class="text-color-dark text-color-hover-primary">Styled Bag</a></h3>
</div>
<a href="#" class="text-decoration-none text-color-default text-color-hover-dark text-4"><i class="far fa-heart"></i></a>
</div>
<div title="Rated 5 out of 5">
<input type="text" class="d-none" value="5" title="" data-plugin-star-rating data-plugin-options="{'displayOnly': true, 'color': 'default', 'size':'xs'}">
</div>
<p class="price text-5 mb-3">
<span class="sale text-color-dark font-weight-semi-bold">$199,00</span>
<span class="amount">$119,00</span>
</p>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="product mb-0">
<div class="product-thumb-info border-0 mb-3">
<div class="addtocart-btn-wrapper">
<a href="shop-cart.html" class="text-decoration-none addtocart-btn" title="Add to Cart">
<i class="icons icon-bag"></i>
</a>
</div>
<a href="ajax/shop-product-quick-view.html" class="quick-view text-uppercase font-weight-semibold text-2">
QUICK VIEW
</a>
<a href="shop-product-sidebar-left.html">
<div class="product-thumb-info-image">
<img alt="" class="img-fluid" src="img/products/product-grey-6.jpg">
</div>
</a>
</div>
<div class="d-flex justify-content-between">
<div>
<a href="#" class="d-block text-uppercase text-decoration-none text-color-default text-color-hover-primary line-height-1 text-0 mb-1">hat</a>
<h3 class="text-3-5 font-weight-medium font-alternative text-transform-none line-height-3 mb-0"><a href="shop-product-sidebar-right.html" class="text-color-dark text-color-hover-primary">Blue Hat</a></h3>
</div>
<a href="#" class="text-decoration-none text-color-default text-color-hover-dark text-4"><i class="far fa-heart"></i></a>
</div>
<div title="Rated 5 out of 5">
<input type="text" class="d-none" value="5" title="" data-plugin-star-rating data-plugin-options="{'displayOnly': true, 'color': 'default', 'size':'xs'}">
</div>
<p class="price text-5 mb-3">
<span class="sale text-color-dark font-weight-semi-bold">$299,00</span>
<span class="amount">$289,00</span>
</p>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="product mb-0">
<div class="product-thumb-info border-0 mb-3">
<div class="addtocart-btn-wrapper">
<a href="shop-cart.html" class="text-decoration-none addtocart-btn" title="Add to Cart">
<i class="icons icon-bag"></i>
</a>
</div>
<a href="ajax/shop-product-quick-view.html" class="quick-view text-uppercase font-weight-semibold text-2">
QUICK VIEW
</a>
<a href="shop-product-sidebar-left.html">
<div class="product-thumb-info-image">
<img alt="" class="img-fluid" src="img/products/product-grey-8.jpg">
</div>
</a>
</div>
<div class="d-flex justify-content-between">
<div>
<a href="#" class="d-block text-uppercase text-decoration-none text-color-default text-color-hover-primary line-height-1 text-0 mb-1">accessories</a>
<h3 class="text-3-5 font-weight-medium font-alternative text-transform-none line-height-3 mb-0"><a href="shop-product-sidebar-right.html" class="text-color-dark text-color-hover-primary">Adventurer Bag</a></h3>
</div>
<a href="#" class="text-decoration-none text-color-default text-color-hover-dark text-4"><i class="far fa-heart"></i></a>
</div>
<div title="Rated 5 out of 5">
<input type="text" class="d-none" value="5" title="" data-plugin-star-rating data-plugin-options="{'displayOnly': true, 'color': 'default', 'size':'xs'}">
</div>
<p class="price text-5 mb-3">
<span class="sale text-color-dark font-weight-semi-bold">$99,00</span>
<span class="amount">$79,00</span>
</p>
</div>
</div>
<div class="col-sm-6 col-lg-4">
<div class="product mb-0">
<div class="product-thumb-info border-0 mb-3">
<div class="addtocart-btn-wrapper">
<a href="shop-cart.html" class="text-decoration-none addtocart-btn" title="Add to Cart">
<i class="icons icon-bag"></i>
</a>
</div>
<a href="ajax/shop-product-quick-view.html" class="quick-view text-uppercase font-weight-semibold text-2">
QUICK VIEW
</a>
<a href="shop-product-sidebar-left.html">
<div class="product-thumb-info-image">
<img alt="" class="img-fluid" src="img/products/product-grey-9.jpg">
</div>
</a>
</div>
<div class="d-flex justify-content-between">
<div>
<a href="#" class="d-block text-uppercase text-decoration-none text-color-default text-color-hover-primary line-height-1 text-0 mb-1">sports</a>
<h3 class="text-3-5 font-weight-medium font-alternative text-transform-none line-height-3 mb-0"><a href="shop-product-sidebar-right.html" class="text-color-dark text-color-hover-primary">Baseball Ball</a></h3>
</div>
<a href="#" class="text-decoration-none text-color-default text-color-hover-dark text-4"><i class="far fa-heart"></i></a>
</div>
<div title="Rated 5 out of 5">
<input type="text" class="d-none" value="5" title="" data-plugin-star-rating data-plugin-options="{'displayOnly': true, 'color': 'default', 'size':'xs'}">
</div>
<p class="price text-5 mb-3">
<span class="sale text-color-dark font-weight-semi-bold">$399,00</span>
<span class="amount">$299,00</span>
</p>
</div>
</div>
</div>
<div class="row mt-4">
<div class="col">
<ul class="pagination float-end">
<li class="page-item"><a class="page-link" href="#"><i class="fas fa-angle-left"></i></a></li>
<li class="page-item active"><a class="page-link" href="#">1</a></li>
<li class="page-item"><a class="page-link" href="#">2</a></li>
<li class="page-item"><a class="page-link" href="#">3</a></li>
<li class="page-item"><a class="page-link" href="#"><i class="fas fa-angle-right"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php include 'footer.php'; ?>
</div>
<!-- Vendor -->
<script src="vendor/plugins/js/plugins.min.js"></script>
<script src="vendor/bootstrap-star-rating/js/star-rating.min.js"></script>
<script src="vendor/bootstrap-star-rating/themes/krajee-fas/theme.min.js"></script>
<script src="vendor/jquery.countdown/jquery.countdown.min.js"></script>
<!-- Theme Base, Components and Settings -->
<script src="js/theme.js"></script>
<!-- Current Page Vendor and Views -->
<script src="js/views/view.shop.js"></script>
<!-- Theme Custom -->
<script src="js/custom.js"></script>
<!-- Theme Initialization Files -->
<script src="js/theme.init.js"></script>
</body>
</html>