exception_full.html.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. <?php if (class_exists('Symfony\Component\HttpKernel\Kernel')) { ?>
  15. <header>
  16. <div class="container">
  17. <h1 class="logo"><?= $this->include('assets/images/symfony-logo.svg'); ?> Symfony Exception</h1>
  18. <div class="help-link">
  19. <a href="https://symfony.com/doc/<?= Symfony\Component\HttpKernel\Kernel::VERSION; ?>/index.html">
  20. <span class="icon"><?= $this->include('assets/images/icon-book.svg'); ?></span>
  21. <span class="hidden-xs-down">Symfony</span> Docs
  22. </a>
  23. </div>
  24. <div class="help-link">
  25. <a href="https://symfony.com/support">
  26. <span class="icon"><?= $this->include('assets/images/icon-support.svg'); ?></span>
  27. <span class="hidden-xs-down">Symfony</span> Support
  28. </a>
  29. </div>
  30. </div>
  31. </header>
  32. <?php } ?>
  33. <?= $this->include('views/exception.html.php', $context); ?>
  34. <script>
  35. <?= $this->include('assets/js/exception.js'); ?>
  36. </script>
  37. </body>
  38. </html>
  39. <!-- <?= $_message; ?> -->