error.php 1.2 KB

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