production.php 500 B

12345678910111213141516171819202122232425
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="robots" content="noindex">
  6. <title><?= lang('Errors.whoops') ?></title>
  7. <style>
  8. <?= preg_replace('#[\r\n\t ]+#', ' ', file_get_contents(__DIR__ . DIRECTORY_SEPARATOR . 'debug.css')) ?>
  9. </style>
  10. </head>
  11. <body>
  12. <div class="container text-center">
  13. <h1 class="headline"><?= lang('Errors.whoops') ?></h1>
  14. <p class="lead"><?= lang('Errors.weHitASnag') ?></p>
  15. </div>
  16. </body>
  17. </html>