error.php 532 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. use yii\helpers\Html;
  3. /**
  4. * @var yii\web\View $this
  5. * @var string $name
  6. * @var string $message
  7. * @var Exception $exception
  8. */
  9. $this->title = $name;
  10. ?>
  11. <div class="site-error">
  12. <h1><?= Html::encode($this->title) ?></h1>
  13. <div class="alert alert-danger">
  14. <?= nl2br(Html::encode($message)) ?>
  15. </div>
  16. <p>
  17. The above error occurred while the Web server was processing your request.
  18. </p>
  19. <p>
  20. Please contact us if you think this is a server error. Thank you.
  21. </p>
  22. </div>