-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
about.php
97 lines (75 loc) · 2.7 KB
/
about.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
<?php require_once 'includes/header.php'; ?>
<nav class="navbar navbar-expand-lg navbar-light bg-light sticky-top" id="navbar">
<a class="navbar-brand home" href="#">Navbar</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mr-auto text-uppercase">
<li >
<a href="index.php">Home</a>
</li>
<li>
<a href="shop.php">Shop</a>
</li>
<?php if (!isset($_SESSION['customer_email'])): ?>
<li><a href="checkout.php">My Account</a></li>
<?php else: ?>
<li><a href="customer/my_account.php?my_orders">My Account</a></li>
<?php endif ?>
<li>
<a href="cart.php">Shopping Cart</a>
</li>
<li>
<a href="contact.php">Contact Us</a>
</li>
<li>
<a class="active" href="about.php">About Us</a>
</li>
<li>
<a href="services.php">Services</a>
</li>
</ul>
<a href="cart.php" class="btn btn-success mr-2"><i class="fas fa-shopping-cart"></i><span> <?php echo $getFromU->count_product_by_ip($ip_add); ?> items in Cart</span></a>
<form class="form-inline my-2 my-lg-0">
<input class="form-control mr-sm-2" type="search" placeholder="Search" aria-label="Search" name="user_query" required="1">
<button class="btn btn-outline-success my-2 my-sm-0" type="submit" name="search">Search</button>
</form>
</div>
</nav>
<div id="content">
<div class="container">
<div class="row">
<div class="col-md-12">
<nav aria-label="breadcrumb">
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="index.php">Home</a></li>
<li class="breadcrumb-item" aria-current="page">About Us</li>
</ol>
</nav>
</div>
<?php
$get_about = $getFromU->viewFromTable('about_us');
$about_id = $get_about->about_id;
$about_heading = $get_about->about_heading;
$about_short_desc = $get_about->about_short_desc;
$about_desc = $get_about->about_desc;
?>
<div class="col-md-12 mb-4">
<div class="card">
<div class="card-header text-center">
<h5 class="mt-4"><?php echo $about_heading; ?></h5>
</div>
<div class="card-body text-justify">
<div class="col-md-12">
<p class="lead font-italic"><?php echo $about_short_desc; ?></p>
<p><?php echo $about_desc; ?></p>
</div>
</div>
</div> <!-- Card End -->
</div> <!-- col-md-9 End -->
</div> <!-- Row End -->
</div> <!-- SINGLE PRODUCT ROW END -->
</div>
</div>
<?php require_once 'includes/footer.php'; ?>