MastodonHelp/web/site/404.php

17 lines
440 B
PHP
Raw Normal View History

2020-10-27 18:00:46 +01:00
<?php
if (!defined('N')) {
echo('You probably meant <a href="'.preg_replace('/\.php$/','',$_SERVER['REQUEST_URI']).'">this</a> (but why? Oh well).');
exit(0);
}
2020-10-27 18:00:46 +01:00
echo('</nav>
2019-12-02 20:16:26 +01:00
<div class="scrwide">
<div class="scrwidein">
<section class="sectcont">
2022-11-29 13:23:32 +01:00
<h3>404: '._('resource not found').'</h3>
<p>'._('Sorry, the requested URL doesnt match any resource on this server.').'<br>
2020-10-27 18:00:46 +01:00
'._('Try the menu ;-)').'</p>
2019-12-02 20:16:26 +01:00
</section>
</div>
2020-10-27 18:00:46 +01:00
</div>'.N);
?>