1
0
Files
breadcrumb-the-shire/templates/error.phtml

32 lines
955 B
PHTML
Raw Normal View History

2026-02-04 23:31:53 +01:00
<?php
use MintyPHP\Buffer;
$defaultTitle = appTitle();
$primaryVars = appPrimaryCssVars();
$theme = appDefaultTheme();
$statusCode = http_response_code() ?: 500;
2026-02-04 23:31:53 +01:00
?>
<!DOCTYPE html>
<html data-theme="<?php e($theme); ?>" <?php if ($primaryVars !== ''): ?>style="<?php e($primaryVars); ?>"<?php endif; ?>>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><?php e($statusCode . ' - ' . $defaultTitle); ?></title>
<link rel="icon" type="image/png" sizes="32x32" href="<?php e(appFaviconUrl('favicon-32x32.png')); ?>">
<?php renderTemplateStyles('default'); ?>
<?php renderTemplateStyles('error'); ?>
</head>
2026-02-04 23:31:53 +01:00
<body>
<div class="error-page">
<div class="error-page__code"><?php e($statusCode); ?></div>
<div class="error-page__message"><?php Buffer::get('html'); ?></div>
<a class="error-page__back" href="/"><?php e(t('Back to start')); ?></a>
</div>
</body>
2026-02-04 23:31:53 +01:00
</html>