53 lines
1.8 KiB
HTML
53 lines
1.8 KiB
HTML
{% load staticfiles i18n %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta name="description" content="">
|
|
<meta name="author" content="">
|
|
|
|
<title> Page not found | ungleich </title>
|
|
|
|
<!-- Bootstrap Core CSS -->
|
|
<link href="{% static 'datacenterlight/css/bootstrap-3.3.7.min.css' %}" rel="stylesheet">
|
|
|
|
<!-- Custom CSS -->
|
|
<link href="{% static 'hosting/css/landing-page.css' %}" rel="stylesheet">
|
|
|
|
<!-- Icon Fonts -->
|
|
<link href="{% static 'datacenterlight/font-awesome/css/font-awesome.min.css' %}" rel="stylesheet" type="text/css">
|
|
<!-- External Fonts -->
|
|
<link href="//fonts.googleapis.com/css?family=Lato:300,400,600,700" 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 class="error404">
|
|
<div class="content-404">
|
|
<div class="container text-center">
|
|
<h1> </h1>
|
|
<h1>404</h1>
|
|
<p class="lead">
|
|
{% trans '"Sorry, we could not find the page you are looking for!"' %}
|
|
</p>
|
|
</div>
|
|
|
|
<!-- jQuery -->
|
|
<script src="{% static 'datacenterlight/js/jquery-2.2.4.min.js' %}"></script>
|
|
<!-- Bootstrap Core JavaScript -->
|
|
<script src="{% static 'datacenterlight/js/bootstrap-3.3.7.min.js' %}"></script>
|
|
</body>
|
|
</html>
|
|
|