Added new 404.html page
This commit is contained in:
parent
a6ea27696a
commit
48650f33ce
1 changed files with 53 additions and 21 deletions
|
@ -1,27 +1,59 @@
|
||||||
{% load staticfiles%}
|
{% load staticfiles%}
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html>
|
<html lang="en">
|
||||||
<head>
|
|
||||||
<link href="{% static 'ungleich_page/css/404.css' %}" rel="stylesheet">
|
|
||||||
<title>404 | ungleich</title>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
|
|
||||||
<div class="error">
|
<head>
|
||||||
<div class="error-code m-b-10 m-t-20">404 <i class="fa fa-warning"></i></div>
|
|
||||||
<h3 class="font-bold">We couldn't find the page..</h3>
|
|
||||||
|
|
||||||
<div class="error-desc">
|
<meta charset="utf-8">
|
||||||
Sorry, but the page you are looking for was either not found or does not exist. <br/>
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
Try refreshing the page or click the button below to go back to the Homepage.
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<div>
|
<meta name="description" content="">
|
||||||
<a class=" login-detail-panel-button btn" href="{% url 'ungleich_page:landing' %}">
|
<meta name="author" content="">
|
||||||
<i class="fa fa-arrow-left"></i>
|
|
||||||
Go back to Homepage
|
<title> Page not found | ungleich </title>
|
||||||
</a>
|
|
||||||
</div>
|
<!-- Bootstrap Core CSS -->
|
||||||
</div>
|
<link href="{% static 'hosting/css/bootstrap.min.css' %}" rel="stylesheet">
|
||||||
</div>
|
|
||||||
|
<!-- Custom CSS -->
|
||||||
|
<link href="{% static 'hosting/css/landing-page.css' %}" rel="stylesheet">
|
||||||
|
|
||||||
|
<!-- Custom Fonts -->
|
||||||
|
<link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
|
||||||
|
<link href="font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
|
||||||
|
<link href="http://fonts.googleapis.com/css?family=Lato:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css">
|
||||||
|
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon" />
|
||||||
|
|
||||||
|
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
|
||||||
|
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
|
||||||
|
<!--[if lt IE 9]>
|
||||||
|
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
|
||||||
|
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
|
||||||
|
<![endif]-->
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<body class="error404">
|
||||||
|
<div class="content-404">
|
||||||
|
<div class="container">
|
||||||
|
<div class="text-center">
|
||||||
|
<h1> </h1>
|
||||||
|
<h1>404</h1>
|
||||||
|
<p class-"lead">
|
||||||
|
"Sorry, we could not find the page you are looking for!"
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<!-- Footer --><!-- jQuery -->
|
||||||
|
<script src="js/jquery.js"></script>
|
||||||
|
|
||||||
|
<!-- Bootstrap Core JavaScript -->
|
||||||
|
<script src="js/bootstrap.min.js"></script>
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
</body>
|
|
||||||
</html>
|
</html>
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue