-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
22 lines (16 loc) · 780 Bytes
/
404.php
File metadata and controls
22 lines (16 loc) · 780 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php require "includes/header.php"; ?>
<?php require "config/config.php"; ?>
<section class="home-slider owl-carousel">
<div class="slider-item" style="background-image: url(<?php echo APPURL; ?>/images/bg_3.jpg);" data-stellar-background-ratio="0.5">
<div class="overlay"></div>
<div class="container">
<div class="row slider-text justify-content-center align-items-center">
<div class="col-md-7 col-sm-12 text-center ftco-animate">
<h1 class="mb-3 mt-5 bread">404 Page Not Found</h1>
<a href="<?php echo APPURL; ?>" class="btn btn-primary py-3 px-4">Go Home</a>
</div>
</div>
</div>
</div>
</section>
<?php require "includes/footer.php"; ?>