MastodonHelp/web/site/404.php

16 lines
440 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
if (!defined('N')) {
echo('You probably meant <a href="'.preg_replace('/\.php$/','',$_SERVER['REQUEST_URI']).'">this</a> (but why? Oh well).');
exit(0);
}
echo('</nav>
<div class="scrwide">
<div class="scrwidein">
<section class="sectcont">
<h3>404: '._('resource not found').'</h3>
<p>'._('Sorry, the requested URL doesnt match any resource on this server.').'<br>
'._('Try the menu ;-)').'</p>
</section>
</div>
</div>'.N);
?>