-
Notifications
You must be signed in to change notification settings - Fork 1
/
404.php
executable file
·27 lines (23 loc) · 1.07 KB
/
404.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
<?php @header("HTTP/1.1 404 Not found", true, 404);?>
<?php disallow_direct_load('404.php');?>
<?php get_version_header(); the_post();?>
<section class="container" id="search-results">
<div class="row">
<div class="col-md-12">
<h1 class="mb-4">Page Not Found</h1>
<?php
$current_version = get_relevant_version();
// Determine page content based on version number
// for Athena Framework backwards compatibility.
if ( $current_version >= 6 ) :
?>
<p class="font-size-lg">The page you were looking for was not found. Please check the address and try again. If you believe you reached this page in error, please contact the Web Communications Team at <a href="mailto:webcom@ucf.edu">webcom@ucf.edu</a>.</p>
<?php else : ?>
<p><big>
The page you were looking for was not found. Please check the address and try again. If you believe you reached this page in error, please contact the Web Communications Team at <a href="mailto:webcom@ucf.edu">webcom@ucf.edu</a>.
</big></p>
<?php endif; ?>
</div>
</div>
</section>
<?php get_version_footer();?>