2023-01-09 00:02:23 +00:00
|
|
|
<?php
|
|
|
|
$self->extends('master');
|
|
|
|
|
|
|
|
$self->block('body', function($self) {
|
|
|
|
?>
|
2023-10-18 10:34:30 +00:00
|
|
|
<div class="http-err">
|
|
|
|
<h1 class="http-err-title"><?=($self->http_error_title ?? 'Unknown Error');?></h1>
|
|
|
|
<p class="http-err-paragraph"><?=($self->http_error_desc ?? 'No additional information is available.');?></p>
|
|
|
|
</div>
|
2023-01-09 00:02:23 +00:00
|
|
|
<?php
|
|
|
|
});
|