-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
19 lines (17 loc) · 722 Bytes
/
404.php
File metadata and controls
19 lines (17 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php include_once($_SERVER['DOCUMENT_ROOT'].'/bootstrap.php');?>
<?php include_once(ELEMENT.'head.php');?> <!-- include header section -->
<!-- Content Wrapper. Contains page content -->
<section class="content">
<div id="notfound">
<div class="notfound">
<div class="notfound-404">
<h1>4<span></span>4</h1>
</div>
<h2>Oops! Page Not Be Found</h2>
<p>Sorry but the page you are looking for does not exist, have been removed. name changed or is temporarily unavailable</p>
<a href="javascript:history.go(-1)" title="Return to the previous page">Back to Previous</a>
</div>
</div>
</section>
<!-- /.content -->
<?php include_once(ELEMENT.'script.php');?> <!-- include Footer section -->