layout.html.php 686 B

123456789101112131415161718192021222324252627282930
  1. <?php
  2. /**
  3. * Layout template file for Whoops's pretty error output.
  4. */
  5. ?>
  6. <!DOCTYPE html>
  7. <html>
  8. <head>
  9. <meta charset="utf-8">
  10. <title>Whoops there was an error!</title>
  11. <style><?php echo $stylesheet ?></style>
  12. </head>
  13. <body>
  14. <div class="container">
  15. <div class="details">
  16. <header>
  17. Server Error
  18. </header>
  19. <p>Sorry, something went terribly wrong!</p>
  20. <h3><?php echo $code ?> - <?php echo $message ?></h3>
  21. <h5>For further details please review your <code>logs/</code> folder, or enable displaying of errors in your system configuration.</h5>
  22. </div>
  23. </div>
  24. </body>
  25. </html>