Blame view

frontend/views/site/error.php 1.51 KB
f5002842   Eugeny Galkovskiy   first commit
1
2
3
4
5
6
7
8
9
10
11
12
  <?php
  
  /* @var $this yii\web\View */
  /* @var $name string */
  /* @var $message string */
  /* @var $exception Exception */
  
  use yii\helpers\Html;
  
  $this->title = $name;
  ?>
  
31f9e6ed   Eugeny Galkovskiy   error-page1
13
14
15
16
17
18
19
20
21
22
23
24
  <style>
      #error-page .title{
          font-size: 28px;
          font-weight: bold;
          line-height: 36px;
          color: #333333;
      }
      #error-page .subtitle{
          color: #333333;
          font-size: 24px;
          margin-top: 3px;
      }
3359e826   Eugeny Galkovskiy   error-page2
25
26
27
28
29
30
31
32
33
34
35
36
37
      #error-page .error-logo div{
          display: block;
          margin: 0 auto;
          width: 100%;
          max-width: 430px;
          padding-top: 50%;
          max-height: 191px;
          box-sizing: border-box;
          background: url(/img/404.png);
          background-position: top center;
          background-repeat: no-repeat;
          background-size: contain;
      }
95f0dda0   Eugeny Galkovskiy   error-page2
38
39
40
      @media(max-width:1199px){
          #error-page br{display:none;}
      }
31f9e6ed   Eugeny Galkovskiy   error-page1
41
42
  </style>
  
f5002842   Eugeny Galkovskiy   first commit
43
44
45
  <div id="content">
    <div class="container">
      
31f9e6ed   Eugeny Galkovskiy   error-page1
46
47
      <div class="col-sm-12" id="error-page">
  
c5f791fc   Eugeny Galkovskiy   error-page2
48
49
50
          <div class="col-sm-6 error-logo">
              <div></div>
          </div>
31f9e6ed   Eugeny Galkovskiy   error-page1
51
          <div class="col-sm-6">
47cf20df   Eugeny Galkovskiy   error-page1
52
              <div class="text-left title">К сожалению, <br/>мы не можем найти такую страницу</div>
31f9e6ed   Eugeny Galkovskiy   error-page1
53
54
              <div class="text-left subtitle">Попробуйте еще раз или:</div>
  
6bd17844   Eugeny Galkovskiy   error-page2
55
              <p class="buttons text-right"><a href="/" class="btn btn-template-main">Перейти на главную</a></p>
31f9e6ed   Eugeny Galkovskiy   error-page1
56
57
          </div>
  
f5002842   Eugeny Galkovskiy   first commit
58
59
60
61
62
63
64
      
      </div>
      <!-- /.col-sm-6 -->
    </div>
    <!-- /.container -->
  </div>
  <!-- /#content -->