error.php 889 B

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /**
  3. * 重庆赤晓店信息科技有限公司
  4. * https://www.chixiaodian.com
  5. * Copyright (c) 2023 赤店商城 All rights reserved.
  6. */
  7. /* 此页面模版仅在调试时直接访问时渲染,使用ajax访问时不会渲染此模版
  8. @var $this yii\web\View
  9. @var $name string
  10. @var $message string
  11. @var $exception Exception
  12. */
  13. use yii\helpers\Html;
  14. ?>
  15. <!DOCTYPE html>
  16. <html>
  17. <head>
  18. <meta charset="utf-8">
  19. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  20. <meta name="viewport" content="width=device-width,initial-scale=1.0">
  21. <title><?= $name ?></title>
  22. </head>
  23. <body>
  24. <div class="site-error">
  25. <h1><?= Html::encode($name) ?></h1>
  26. <div class="alert alert-danger">
  27. <?= nl2br(Html::encode($message)) ?>
  28. </div>
  29. </div>
  30. </body>
  31. </html>