-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathphp-404-p.php
36 lines (30 loc) · 1.35 KB
/
php-404-p.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
<?php require_once('php-inc-header.php'); ?>
<!-- Main Content -->
<section id="main">
<div class="pageHeader bgCover mb60" style='background-image:url(assets/img/placeholder-1920x450.png)'>
<div class="container">
<div class="row">
<div class="ccol col-md-12">
<h2 class="page-title mb-3"><?php echo $pageName; ?></h2>
<ul class="breadcrumbs">
<li><a href="php-index.php">Home</a></li>
<li class="active"><?php echo $pageName; ?></li>
</ul>
</div>
</div>
</div>
</div> <!-- pageHeader -->
<div class="box404 mb60">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Error 404</h1>
<h2 class="mb-4"><b>Sorry, Page Not Found..</b></h2>
<p>Looking for something? Please feel free to contact us <a href="php-contact-p.php">here.</a></p>
</div>
</div>
</div>
</div> <!-- contentBox -->
</section> <!-- end of #main -->
<?php require_once('php-inc-cta-bottom.php'); ?>
<?php require_once('php-inc-footer.php'); ?>