Files
SmartHomePHP/views/error/error.php
2017-03-01 00:30:43 +02:00

17 lines
285 B
PHP

<?php
/* @var $this yii\web\View */
/* @var $name string */
/* @var $message string */
/* @var $exception Exception */
use yii\helpers\Html;
$this->title = $name;
$this->params['in-card'] = false;
?>
<div class="alert alert-danger">
<?= nl2br(Html::encode($message)) ?>
</div>