Files
Netbox-Store/store/templates/error.php
T
MrBlake f36d6be511
CI / php-store (push) Waiting to run
CI / python-components (push) Waiting to run
feat: add NetBox plugin store
2026-08-24 20:51:25 +02:00

9 lines
413 B
PHP

<?php declare(strict_types=1); include __DIR__ . '/partials/head.php'; ?>
<section class="shell error-page">
<span class="error-code"><?= $e($status ?? 500) ?></span>
<h1><?= $e($title ?? 'Fehler') ?></h1>
<p><?= $e($message ?? 'Die Anfrage konnte nicht verarbeitet werden.') ?></p>
<a class="button primary" href="/">Zur Store-Startseite</a>
</section>
<?php include __DIR__ . '/partials/footer.php'; ?>