error.php
1006 Bytes
<?php
/* @var $this yii\web\View */
/* @var $name string */
/* @var $message string */
/* @var $exception Exception */
use yii\helpers\Html;
$this->title = $name;
?>
<section class="wrap-404">
<div class="container-fluid">
<?php if (YII_ENV_DEV) { ?>
<p>
<div class="alert alert-danger">
<?php echo Html::encode($this->title) . ' ' . nl2br(Html::encode($message)) ?>
</div>
</p>
<?php } ?>
<div class="inner">
<div class="content-box">
<img src="/images/404/mood_bad-.png" alt="" class="img-responsive">
<h3>THIS ISN’T THE WEB PAGE YOU ARE LOOKING FOR</h3>
<div class="bot">
<p>Please try one of the following pages</p>
<div class="btn-web ">
<a href="#" title="">HOME PAGE</a>
</div>
</div>
</div>
</div>
</div>
</section>