Blame view

frontend/views/site/error.php 865 Bytes
1755c393   Yarik   Basic template in...
1
2
3
4
5
6
7
8
9
10
11
  <?php
  
  /* @var $this yii\web\View */
  /* @var $name string */
  /* @var $message string */
  /* @var $exception Exception */
  
  use yii\helpers\Html;
  
  $this->title = $name;
  ?>
1755c393   Yarik   Basic template in...
12
  
4acbd19d   Alexey Boroda   -Bar tabs
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
  <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>
          
          <h3>We are sorry - this page is not here anymore</h3>
          <h4 class="text-muted">Error 404 - Page not found</h4>
          
          <p class="buttons"><a href="index.html" class="btn btn-template-main"><i class="fa fa-home"></i> Go to Homepage</a>
          </p>
        </div>
      
      
1755c393   Yarik   Basic template in...
34
      </div>
4acbd19d   Alexey Boroda   -Bar tabs
35
36
37
      <!-- /.col-sm-6 -->
    </div>
    <!-- /.container -->
1755c393   Yarik   Basic template in...
38
  </div>
4acbd19d   Alexey Boroda   -Bar tabs
39
  <!-- /#content -->