-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path500.php
36 lines (34 loc) · 1012 Bytes
/
500.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
28
29
30
31
32
33
34
35
36
<!doctype html>
<html lang="en">
<head>
<title>
<?php
$title = "HTTP 500 INTERNAL SERVER ERROR";
echo $title;
?>
</title>
<base href="https://mammaldiversity.org/" />
<?php include_once dirname(__FILE__)."/modular/header.php"; ?>
</head>
<?php
require_once dirname(__FILE__)."/modular/bodyFrame.php";
echo $bodyOpen;
?>
<div class="col-xs-12">
<h1>Yikes.</h1>
<p class="col-xs-12">
That's an error. Our system isn't able to handle your request.
</p>
<div class="col-xs-12 error-image">
<video autoplay loop poster="https://media.giphy.com/media/1eUtlOkkugRX2/200_s.gif">
<source src="https://media.giphy.com/media/1eUtlOkkugRX2/giphy.mp4" type="video/mp4"/>
<img src="https://media.giphy.com/media/1eUtlOkkugRX2/giphy.gif" />
</video>
</div>
<p class="col-xs-12">
Or, in web parlance, <code>500 INTERNAL SERVER ERROR</code>
</p>
</div>
<?php echo $bodyClose;
?>
</html>