-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.php
116 lines (102 loc) · 4.72 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
<?php
session_start();
include("functions/functions.php");
$page = "home";
$title = "Home | Stickers-Center";
$metaD = "Stickers Center Homepage";
include("header.php");
?>
<section id="slider">
<!--slider-->
<div class="container">
<div class="row">
<div class="col-sm-12">
<div id="slider-carousel" class="carousel slide" data-ride="carousel">
<ol class="carousel-indicators">
<li data-target="#slider-carousel" data-slide-to="0" class="active"></li>
<li data-target="#slider-carousel" data-slide-to="1"></li>
<li data-target="#slider-carousel" data-slide-to="2"></li>
</ol>
<div class="carousel-inner">
<div class="item active">
<div class="col-sm-6">
<h1><span>Stickers</span> Center</h1>
<h2>Wall Stickers & Wallpapers</h2>
<p>Design your house as you wish with our wide range of products.</p>
<button type="button" class="btn btn-default get">Get it now</button>
</div>
<div class="col-sm-6">
<img src="images/home/themes/bedroom-wall-design-for-mint-green3.jpg" class="girl img-responsive" alt="" />
</div>
</div>
<div class="item">
<div class="col-sm-6">
<h1><span>Stickers</span> Center</h1>
<h2>100% Quality Design</h2>
<p>Design your house as you wish with our wide range of products. </p>
<button type="button" class="btn btn-default get">Get it now</button>
</div>
<div class="col-sm-6">
<img src="images/home/themes/livingroom-wall-design-classic-blue.jpg" class="girl img-responsive" alt="" />
</div>
</div>
<div class="item">
<div class="col-sm-6">
<h1><span>Stickers</span> Center</h1>
<h2>100% Quality Design</h2>
<p>Design your house as you wish with our wide range of products. </p>
<button type="button" class="btn btn-default get">Get it now</button>
</div>
<div class="col-sm-6">
<img src="images/home/themes/children-sailboat-wallpaper-bedroom-boys-room-blue.jpg" class="girl img-responsive" alt="" />
</div>
</div>
</div>
<a href="#slider-carousel" class="left control-carousel hidden-xs" data-slide="prev">
<i class="fa fa-angle-left"></i>
</a>
<a href="#slider-carousel" class="right control-carousel hidden-xs" data-slide="next">
<i class="fa fa-angle-right"></i>
</a>
</div>
</div>
</div>
</div>
</section>
<!--/slider-->
<section>
<div class="container">
<div class="row">
<?php
include("left_menu.php");
?>
<div class="col-sm-9 padding-right">
<div class="features_items">
<h2 class="title text-center">Featured Items</h2>
<?php getProducts(); ?>
<?php getCategoryProducts(); ?>
<?php getThemeProducts(); ?>
</div>
<div class="category-tab">
<div class="col-sm-12">
<ul class="nav nav-tabs">
<li class="active"><a href="#kids" data-toggle="tab">Kids</a></li>
<li><a href="#livingroom" data-toggle="tab">Living-room</a></li>
<li><a href="#bedroom" data-toggle="tab">Bedroom</a></li>
<li><a href="#home" data-toggle="tab">Home</a></li>
</ul>
</div>
<div class="tab-content">
<?php getProductsTabs(); ?>
</div>
</div>
<?php
include("recommended_items.php");
?>
</div>
</div>
</div>
</section>
<?php
include("footer.php");
?>