error.php 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. <?php
  2. /* @var $this yii\web\View */
  3. /* @var $name string */
  4. /* @var $message string */
  5. /* @var $exception Exception */
  6. use yii\helpers\Html;
  7. $this->context->layout = false;
  8. $this->title = $name;
  9. ?>
  10. <!DOCTYPE html>
  11. <html>
  12. <head>
  13. <meta charset="utf-8">
  14. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  15. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  16. <title><?= Html::encode($this->title) ?></title>
  17. <link href="<?= STATIC_URL ?>/ui/css/bootstrap.min.css" rel="stylesheet">
  18. <link href="<?= STATIC_URL ?>/ui/font-awesome/css/font-awesome.css" rel="stylesheet">
  19. <link href="<?= STATIC_URL ?>/ui/css/animate.css" rel="stylesheet">
  20. <link href="<?= STATIC_URL ?>/ui/css/style.css" rel="stylesheet">
  21. </head>
  22. <body class="gray-bg">
  23. <div class="middle-box text-center animated fadeInDown" style="margin-top:100px;">
  24. <h1><?= Yii::$app->getResponse()->getStatusCode() ?></h1>
  25. <h3 class="font-bold"><?= $name ?></h3>
  26. <div class="error-desc"><?= nl2br(Html::encode($message)) ?> <a href="/">返回首页</a></div>
  27. </div>
  28. <!-- Mainly scripts -->
  29. <script src="<?= STATIC_URL ?>/ui/js/jquery.1.9.1.min.js"></script>
  30. <script src="<?= STATIC_URL ?>/ui/js/bootstrap.min.js"></script>
  31. </body>
  32. </html>