exception_full.html.php 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!-- <?= $_message = sprintf('%s (%d %s)', $exceptionMessage, $statusCode, $statusText); ?> -->
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="<?= $this->charset; ?>" />
  6. <meta name="robots" content="noindex,nofollow" />
  7. <meta name="viewport" content="width=device-width,initial-scale=1" />
  8. <title><?= $_message; ?></title>
  9. <link rel="icon" type="image/png" href="<?= $this->include('assets/images/favicon.png.base64'); ?>">
  10. <style><?= $this->include('assets/css/exception.css'); ?></style>
  11. <style><?= $this->include('assets/css/exception_full.css'); ?></style>
  12. </head>
  13. <body>
  14. <script>
  15. document.body.classList.add(
  16. localStorage.getItem('symfony/profiler/theme') || (matchMedia('(prefers-color-scheme: dark)').matches ? 'theme-dark' : 'theme-light')
  17. );
  18. </script>
  19. <?php if (class_exists(\Symfony\Component\HttpKernel\Kernel::class)) { ?>
  20. <header>
  21. <div class="container">
  22. <h1 class="logo"><?= $this->include('assets/images/symfony-logo.svg'); ?> Symfony Exception</h1>
  23. <div class="help-link">
  24. <a href="https://symfony.com/doc/<?= Symfony\Component\HttpKernel\Kernel::VERSION; ?>/index.html">
  25. <span class="icon"><?= $this->include('assets/images/icon-book.svg'); ?></span>
  26. <span class="hidden-xs-down">Symfony</span> Docs
  27. </a>
  28. </div>
  29. </div>
  30. </header>
  31. <?php } ?>
  32. <?= $this->include('views/exception.html.php', $context); ?>
  33. <script>
  34. <?= $this->include('assets/js/exception.js'); ?>
  35. </script>
  36. </body>
  37. </html>
  38. <!-- <?= $_message; ?> -->