Blame view

frontend/views/site/error.php 1.05 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
25
26
  <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;
      }
  </style>
  
f5002842   Eugeny Galkovskiy   first commit
27
28
29
  <div id="content">
    <div class="container">
      
31f9e6ed   Eugeny Galkovskiy   error-page1
30
31
32
33
34
35
36
37
38
39
      <div class="col-sm-12" id="error-page">
  
          <div class="col-sm-6 error-logo"></div>
          <div class="col-sm-6">
              <div class="text-left title">К сожалению, мы не можем найти такую страницу</div>
              <div class="text-left subtitle">Попробуйте еще раз или:</div>
  
              <p class="buttons text-right"><a href="index.html" class="btn btn-template-main">Перейти на главную</a></p>
          </div>
  
f5002842   Eugeny Galkovskiy   first commit
40
41
42
43
44
45
46
      
      </div>
      <!-- /.col-sm-6 -->
    </div>
    <!-- /.container -->
  </div>
  <!-- /#content -->