|
Server : Apache/2.4.62 System : FreeBSD fbsdweb2.web.rcn.net 14.1-RELEASE FreeBSD 14.1-RELEASE releng/14.1-n267679-10e31f0946d8 GENERIC amd64 User : www ( 80) PHP Version : 8.3.8 Disable Function : NONE Directory : /domains/djweb1/staging/ |
Upload File : |
<?php
/**
* 404 Template
*
* The 404 template is used when a reader visits an invalid URL on your site.
*
* @package DolanJenner
* @subpackage Template
*/
@header($_SERVER['SERVER_PROTOCOL'].' 404 Not found',true,404);
$meta_title = '404 Not Found';
$meta_description = '';
$meta_keywords = '';
$custom_background = '';
$page_context = 'error-404';
$page_title = 'Page Not Found';
require_once('includes/header.php'); // Loads the header.php template. ?>
<div id="content" class="site-content hfeed">
<div class="hentry error">
<h1 class="error-404-title entry-title"><?php echo $page_title; ?></h1>
<div class="entry-content">
<h2>Sorry, the page you requested does not exist.</h2>
<p>If you feel you have reached this page in error, feel free to <a href="<?php echo $site_url; ?>/contact">contact us</a>.
<p>If you think you might be lost, you can always start again from the <a href="<?php echo $site_url; ?>">home page</a>.</p>
</div><!-- .entry-content -->
</div><!-- .hentry -->
</div><!-- #content .hfeed -->
<?php require_once('includes/footer.php'); // Loads the footer.php template. ?>