-
Notifications
You must be signed in to change notification settings - Fork 32
/
index.php
133 lines (87 loc) · 2.53 KB
/
index.php
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
<?php
session_start();
include_once ("admin/class/adminback.php");
$obj = new adminback();
$cata_info = $obj-> p_display_catagory();
$cataDatas = array();
while($data = mysqli_fetch_assoc($cata_info)){
$cataDatas[]=$data;
}
?>
<?php
include_once("includes/head.php");
?>
<body class="biolife-body">
<!-- Preloader -->
<?php
include_once("includes/preloader.php");
?>
<!-- HEADER -->
<header id="header" class="header-area style-01 layout-03">
<?php
include_once("includes/header_top.php");
?>
<?php
include_once("includes/header_middle.php");
?>
<?php
include_once("includes/header_bottom.php");
?>
</header>
<!-- Page Contain -->
<div class="page-contain">
<!-- Main content -->
<div id="main-content" class="main-content">
<!--Block 01: Main Slide-->
<?php
include_once("includes/slider_main.php")
?>
<!--Block 02: Banners-->
<?php
include_once("includes/banner_slider.php")
?>
<!--Block 03: Product Tabs-->
<?php
include_once("includes/home_related_product.php")
?>
<!--Block 06: Products-->
<div class="Product-box sm-margin-top-96px">
<div class="container">
<div class="row">
<div class="col-lg-4 col-md-5 col-sm-6">
<?php
include_once("includes/deals_ofthe_day.php");
?>
</div>
<div class="col-lg-8 col-md-7 col-sm-6">
<?php
include_once("includes/top_rated_product.php")
?>
</div>
</div>
</div>
</div>
<!--Block 07: Brands-->
<?php
include_once("includes/brands.php");
?>
</div>
</div>
<!-- FOOTER -->
<?php
include_once("includes/footer.php");
?>
<!--Footer For Mobile-->
<?php
include_once("includes/mobile_footer.php");
?>
<?php
include_once("includes/mobile_global.php")
?>
<!-- Scroll Top Button -->
<a class="btn-scroll-top"><i class="biolife-icon icon-left-arrow"></i></a>
<?php
include_once("includes/script.php")
?>
</body>
</html>