personal-website/docs/www/errors/500.php

19 lines
478 B
PHP
Raw Permalink Normal View History

2024-05-08 12:57:04 +02:00
<?php
2024-05-10 17:20:25 +02:00
$COMMONS = $_SERVER['DOCUMENT_ROOT'] . "/../common";
include_once($COMMONS."/header.php");
2024-07-31 06:55:42 +02:00
display_header("500: Internal Server Error");
2024-05-08 12:57:04 +02:00
?>
<article>
<h2>500: Internal Server Error</h2>
<div class="centered-container">
<img src="https://assets.zdenekborovec.cz/upload/bddac3669dd44acc8a41e2f935c94a3a/0c5f9e325ba34c02a24f53e50a1cc68d/62aa400be23d4c5ab3f6e2abe666d070" alt="GIF of a very confused cat.">
</div>
</article>
2024-05-10 17:20:25 +02:00
<?php
include_once($COMMONS."/footer.php");
?>