-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
168 lines (159 loc) · 4.71 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
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
<?php
ob_start();
$pageTitle = 'Home';
include('includes/templates/header.php');
?>
<!-- Hero Section Begin -->
<section class="hero-section">
<div class="hero-items owl-carousel">
<div class="single-hero-items set-bg" data-setbg="layout/img/hero-1.jpg">
<div class="container">
<div class="row">
<div class="col-lg-5">
<span>Consoles</span>
<h1>Black friday</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed
do eiusmod tempor incididunt ut labore et dolore
</p>
<a href="#" class="primary-btn">Shop Now</a>
</div>
</div>
<div class="off-card">
<h2>Sale <span>50%</span></h2>
</div>
</div>
</div>
<div class="single-hero-items set-bg" data-setbg="layout/img/hero-2.jpg">
<div class="container">
<div class="row">
<div class="col-lg-5">
<span>VR Headsets</span>
<h1>Black friday</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed
do eiusmod tempor incididunt ut labore et dolore
</p>
<a href="#" class="primary-btn">Shop Now</a>
</div>
</div>
<div class="off-card">
<h2>Sale <span>50%</span></h2>
</div>
</div>
</div>
<div class="single-hero-items set-bg" data-setbg="layout/img/hero-3.jpg">
<div class="container">
<div class="row">
<div class="col-lg-5">
<span>Computers</span>
<h1>Black friday</h1>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed
do eiusmod tempor incididunt ut labore et dolore
</p>
<a href="#" class="primary-btn">Shop Now</a>
</div>
</div>
<div class="off-card">
<h2>Sale <span>50%</span></h2>
</div>
</div>
</div>
</div>
</section>
<!-- Hero Section End -->
<!-- Banner Section Begin -->
<div class="banner-section spad">
<div class="container-fluid">
<div class="row">
<div class="col-lg-4">
<a href="shop.php?category=Desktop">
<div class="single-banner">
<img src="layout/img/banner-1.jpg" alt="" />
<div class="inner-text">
<h4>Desktops</h4>
</div>
</div>
</a>
</div>
<div class="col-lg-4">
<a href="shop.php?category=Laptop">
<div class="single-banner">
<img src="layout/img/banner-2.jpg" alt="" />
<div class="inner-text">
<h4>Laptops</h4>
</div>
</div>
</a>
</div>
<div class="col-lg-4">
<a href="shop.php">
<div class="single-banner">
<img src="layout/img/banner-3.png" alt="" />
<div class="inner-text">
<h4>Accessories</h4>
</div>
</div>
</a>
</div>
</div>
</div>
</div>
<!-- Banner Section End -->
<!-- Top Sale Section Begin -->
<?php include('includes/templates/_top-sale.php'); ?>
<!-- Top Sale Section End -->
<!-- Deal Of The Week Section Begin-->
<section class="deal-of-week set-bg spad" data-setbg="layout/img/time-bg.jpg">
<div class="container">
<div class="col-lg-6 text-center">
<div class="section-title">
<h2>Deal Of The Week</h2>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed<br />
do ipsum dolor sit amet, consectetur adipisicing elit
</p>
<div class="product-price">
$35.00
<span>/ HanBag</span>
</div>
</div>
<div class="countdown-timer" id="countdown">
<div class="cd-item">
<span>56</span>
<p>Days</p>
</div>
<div class="cd-item">
<span>12</span>
<p>Hrs</p>
</div>
<div class="cd-item">
<span>40</span>
<p>Mins</p>
</div>
<div class="cd-item">
<span>52</span>
<p>Secs</p>
</div>
</div>
<a href="shop.php" class="primary-btn">Shop Now</a>
</div>
</div>
</section>
<!-- Deal Of The Week Section End -->
<!-- Featured Section Begin -->
<?php include('includes/templates/_featured.php'); ?>
<!-- Featured Section End -->
<!-- New Products Section Begin -->
<?php include('includes/templates/_new-products.php'); ?>
<!-- New Products Section End -->
<!-- Instagram Section Begin -->
<!-- Instagram Section End -->
<!-- Latest Blog Section Begin -->
<?php include('includes/templates/benefit.php'); ?>
<!-- Latest Blog Section End -->
<?php
include('includes/templates/footer.php');
ob_end_flush();
?>