-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
129 lines (71 loc) · 2.65 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
<?php
require_once './core/initialize.php';
$page_title = 'Home';
$js_file = 'index';
$data_tables = false;
$stripe = false;
require_once VIEWS_DIR . 'header.php';
?>
<section id="welcome">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="card welcome-card">
<div class="card-body">
<h4>Books</h4>
<p>
With a wide range of books, you can be assured that we have what you are looking for.
</p>
<p>
From novel, magazines and educational books you are guaranteed we have it. Our books are
reasonably priced.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card welcome-card">
<div class="card-body">
<h4>Stationery</h4>
<p>
Try our range of imported and local stationery products for your office, school and home.
</p>
</div>
</div>
</div>
<div class="col-md-4">
<div class="card welcome-card">
<div class="card-body">
<h4>Gifts</h4>
<p>
We have a wide variety of gifts for all occasions. For those we do not have in stock we
can order for you upon payment of a 25% deposit.
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="newest_books">
<div class="container">
<div class="row">
<div class="col-md-12">
<h4>Newest books</h4>
</div>
</div>
<div class="row" id="new_books"></div>
</div>
</section>
<section id="best_sellers">
<div class="container">
<div class="row">
<div class="col-md-12">
<h4>Best sellers</h4>
</div>
</div>
<div class="row" id="best_selling_books"></div>
</div>
</section>
<?php
require_once VIEWS_DIR . 'footer.php';