Blame view

frontend/views/site/error.php 886 Bytes
06692811   Eugeny Galkovskiy   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
  <?php
  
  /* @var $this yii\web\View */
  /* @var $name string */
  /* @var $message string */
  /* @var $exception Exception */
  
  use yii\helpers\Html;
  
  $this->title = $name;
  ?>
  
  <div id="content">
    <div class="container">
      
      <div class="col-sm-6 col-sm-offset-3" id="error-page">
        
        <div class="box">
          
          <p class="text-center">
            <a href="index.html">
              <img src="img/logo.png" alt="Obaju template">
            </a>
          </p>
          
46e98c42   Timur Kastemirov   dont show default...
26
27
          <h3><?= \Yii::t('app', 'error_sorry') ?></h3>
          <h4 class="text-muted"><?= \Yii::t('app', 'error_404') ?></h4>
06692811   Eugeny Galkovskiy   first commit
28
          
46e98c42   Timur Kastemirov   dont show default...
29
          <p class="buttons"><a href="index.html" class="btn btn-template-main"><i class="fa fa-home"></i> <?= \Yii::t('app', 'gohomepage') ?></a>
06692811   Eugeny Galkovskiy   first commit
30
31
32
33
34
35
36
37
38
39
          </p>
        </div>
      
      
      </div>
      <!-- /.col-sm-6 -->
    </div>
    <!-- /.container -->
  </div>
  <!-- /#content -->