mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2024-11-24 18:36:59 +03:00
22 lines
403 B
PHP
22 lines
403 B
PHP
<div style="width: 60%; margin: 30px auto">
|
|
|
|
<h1>
|
|
<?= e($title ?? 'Something went wrong') ?>
|
|
</h1>
|
|
|
|
<br>
|
|
<?= e($message) ?>
|
|
<br>
|
|
<br>
|
|
|
|
<?php if (isset($stacktrace)): ?>
|
|
<?php foreach ($stacktrace as $frame) : ?>
|
|
<code>
|
|
<?= e($frame) ?>
|
|
</code>
|
|
<br>
|
|
<?php endforeach; ?>
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|