AzuraCast/templates/system/error_http.phtml

21 lines
521 B
PHTML

<?php
/** @var \Slim\Exception\HttpException $exception */
$this->layout('minimal', [
'title' => $exception->getTitle(),
'page_class' => 'error-content',
]);
?>
<div class="public-page">
<div class="card p-3">
<div class="card-body">
<h2 class="display-4">Error</h2>
<h4><?= $this->e($exception->getMessage()) ?></h4>
<p class="text-muted card-text">
<?= $this->e($exception->getDescription()) ?>
</p>
</div>
</div>
</div>