Revision a370d3dd templates/404.html

b/templates/404.html
1
{% extends "base.html" %}
1
{% extends "b3theme/base.html" %}
2
{% load widget_tweaks %}
2 3

  
3
{% block title %}Page not found{% endblock %}
4
{% block content %}
5
<h3 align="center">Page not found</h3>
6
<h4 align="center">The page that you requested was not found.</h4>
4
{% load i18n %}
5
   {% block sidenav %}{% endblock %}
6
   {% block extraheadbottom %}
7
<style>
8
	@media (min-width: 768px) {
9
		#page-wrapper {
10
		    border-left: none;
11
		    margin: 0;
12
		}
13
}
14
</style>
7 15
{% endblock %}
16

  
17
{% block title %}Page not found{% endblock %}
18

  
19

  
20

  
21
{% block contentplaceholder %}
22
       <div class="container">
23
       <div class="row">
24
                <div class="col-lg-12">
25
                    <h1 class="page-header">Page not found</h1>
26
                </div>
27
                <!-- /.col-lg-12 -->
28
            </div>
29
            
30
            <div class="row">
31
                <div class="col-lg-12">
32
                	<div class="panel panel-danger">
33
                        <div class="panel-heading">
34
                            <i class="fa fa-info-circle"></i> Page not found
35
                        </div>
36
                        <!-- /.panel-heading -->
37
                        <div class="panel-body">
38
                        						<div class="alert alert-danger">
39
					The page that you requested was not found.
40
					</div>
41
                        	</div>
42
                        </div>
43
                       </div>
44
                      </div>
45
                     </div>
46
				
47
	{% endblock %}
48

  
49

  
50

  
51

  

Also available in: Unified diff