Blame view

templates/404.html 793 Bytes
8146dcf82   Thanasis Naskos   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
26
27
28
29
30
31
  {% extends "base.html" %}
  
  {% block title %}Nice 404 - Page not found{% endblock %}
  {% block navbars %}{% endblock %}
  {% block blockcontainer %}
  <div class="container-fluid">
  	<div class="row-fluid">
  		<div class="span12">
  			<div class="row-fluid">
  				<div class="span4"></div>
  				<div class="span4 sidebar">
  					<div class="widget">
  						<div class="row-fluid">
  							<h2>
  								<i class="fa fa-bolt"></i> Page not found
  							</h2>
  							<div class="padwidget">
  								<div class="alert alert-error">
  									<p>No matter how you reached this page, it was simply not found</p>
  									<p>Yeap this is a nice <strong>404</strong>!</p>
  								</div>
  							</div>
  						</div>
  					</div>
  				</div>
  				<div class="span4"></div>
  			</div>
  		</div>
  	</div>
  </div>
  {% endblock %}