1
0
Fork 0
mirror of https://github.com/janickiy/yii2-nomer synced 2025-03-09 15:39:59 +00:00
yii2-nomer/views/site/error.php
2020-02-05 06:34:26 +03:00

21 lines
No EOL
462 B
PHP

<?php
/* @var $this yii\web\View */
/* @var $name string */
/* @var $message string */
/* @var $exception Exception */
use yii\helpers\Html;
$this->title = Html::encode($message);
?>
<div class="searchBox">
<div class="cont clfix">
<div class="row">
<div class="col-md-offset-3 col-md-6 col-xs-12">
<h1 class="header__title"><?= nl2br(Html::encode($message)) ?></h1>
</div>
</div>
</div>
</div>