hanyuu/templates/errors/master.php

10 lines
236 B
PHP

<?php
$self->extends('master');
$self->block('body', function($self) {
?>
<h1><?=($self->http_error_title ?? 'Unknown Error');?></h1>
<p><?=($self->http_error_desc ?? 'No additional information is available.');?></p>
<?php
});