Nessuna descrizione

exception_full.html.php 1.6KB

12345678910111213141516171819202122232425262728293031323334353637
  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::class)) { ?>
  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>
  25. </header>
  26. <?php } ?>
  27. <?= $this->include('views/exception.html.php', $context); ?>
  28. <script>
  29. <?= $this->include('assets/js/exception.js'); ?>
  30. </script>
  31. </body>
  32. </html>
  33. <!-- <?= $_message; ?> -->