personal-website/assets/errors/405.php

19 lines
460 B
PHP
Raw Permalink Normal View History

2024-07-31 06:49:03 +02:00
<?php
2024-07-31 06:55:42 +02:00
$COMMONS = "./../../docs/common";
2024-07-31 06:49:03 +02:00
include_once($COMMONS."/header.php");
display_header("405: Method not allowed");
?>
<article>
<h2>405: Method Not Allowed</h2>
<div class="centered-container">
<img src="https://assets.zdenekborovec.cz/upload/39486004aa605167cdda6623a4a3fa6d/7da36b469b34cc1008639612f0c17e21/d077e6ed1bd1a560a718590ae609422c.gif" alt="GIF of a cat shaking its head.">
</div>
</article>
<?php
include_once($COMMONS."/footer.php");
?>