19 lines
355 B
PHP
19 lines
355 B
PHP
<?php
|
|
/* @var $this yii\web\View */
|
|
/* @var $name string */
|
|
/* @var $message string */
|
|
/* @var $exception Exception */
|
|
|
|
use yii\helpers\Html;
|
|
|
|
$this->title = $name;
|
|
?>
|
|
<div class="site-error">
|
|
|
|
<h1><?= Html::encode($this->title) ?></h1>
|
|
|
|
<div class="alert alert-danger">
|
|
错误信息: <?= nl2br(Html::encode($message)) ?>
|
|
</div>
|
|
</div>
|