Blame view

frontend/views/site/error.php 351 Bytes
550eac02   Administrator   second
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
  <?php
  
  use yii\helpers\Html;
  
  /* @var $this yii\web\View */
  /* @var $name string */
  /* @var $message string */
  /* @var $exception Exception */
  
  $this->title = 'Ошибка '.$code;
  ?>
  <div class="site-error">
  
      <h1>Ошибка <?=$code;?></h1>
  
      <div class="alert alert-danger">
          <?= nl2br(Html::encode($message)) ?>
      </div>
  
  </div>