Blame view

frontend/views/site/error.php 1.21 KB
c237629a   Anastasia   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>
          
d9c166d7   alex   Перевёл почти все...
26
27
28
29
30
31
32
33
34
          <h3>
  <!--    Тут я не знал как правильно устроить перевод, поэтому оставляю оригиналы  на всякий пожарный
          We are sorry - this page is not here anymore
  -->
              <?=\Yii::t('app','Sorry h3');?></h3>
          <h4 class="text-muted">
  <!--            Error 404 - Page not found-->
              <?=\Yii::t('app','404  short description');?>
          </h4>
c237629a   Anastasia   first commit
35
          
d9c166d7   alex   Перевёл почти все...
36
37
38
          <p class="buttons"><a href="index.html" class="btn btn-template-main"><i class="fa fa-home"></i>
                   <?=\Yii::t('app',' Go to Homepage');?>
              </a>
c237629a   Anastasia   first commit
39
40
41
42
43
44
45
46
47
48
          </p>
        </div>
      
      
      </div>
      <!-- /.col-sm-6 -->
    </div>
    <!-- /.container -->
  </div>
  <!-- /#content -->