rss-bridge/templates/error.html.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
445 B
PHP
Raw Normal View History

2022-07-08 20:39:13 +02:00
<div style="width: 60%; margin: 30px auto">
<h1>
<?= e($title ?? 'Something went wrong') ?>
</h1>
2022-07-08 20:39:13 +02:00
<br>
<?= e($message) ?>
<br>
2022-07-08 20:39:13 +02:00
<br>
<?php if (isset($stacktrace)): ?>
<h2>Stacktrace</h2>
<br>
2022-07-08 20:39:13 +02:00
<?php foreach ($stacktrace as $frame) : ?>
<code>
<?= e($frame) ?>
</code>
<br>
<?php endforeach; ?>
<?php endif; ?>
2022-07-08 20:39:13 +02:00
</div>