28 lines
516 B
PHP
28 lines
516 B
PHP
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<?php
|
||
|
set_include_path("./../");
|
||
|
include './page-blocks/headers.php';
|
||
|
?>
|
||
|
<title>Athena - Server Error</title>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
|
||
|
<!-- Main Content Begins -->
|
||
|
<?php require "./page-blocks/title-image.php";?>
|
||
|
|
||
|
<h1>Ah, sorry. There's a problem at our end</h1>
|
||
|
|
||
|
<p><a class="actionbutton" href="/">Try the homepage</a></p>
|
||
|
|
||
|
<h3>50x - Server Error</h3>
|
||
|
|
||
|
|
||
|
<!-- Footer -->
|
||
|
<?php include './page-blocks/footer.php';?>
|
||
|
</body>
|
||
|
|
||
|
</html>
|