dynamicweb/ungleich_page/templates/ungleich_page/404.html

54 lines
1.8 KiB
HTML
Raw Normal View History

2017-11-10 18:46:02 +00:00
{% load staticfiles i18n %}
<!DOCTYPE html>
2016-07-12 02:18:19 +00:00
<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>
2017-11-05 18:56:39 +00:00
2016-07-12 02:18:19 +00:00
<!-- Bootstrap Core CSS -->
2018-02-09 01:30:36 +00:00
<link href="{% static 'datacenterlight/css/bootstrap-3.3.7.min.css' %}" rel="stylesheet">
2016-07-12 02:18:19 +00:00
<!-- Custom CSS -->
<link href="{% static 'hosting/css/landing-page.css' %}" rel="stylesheet">
2018-02-09 01:30:36 +00:00
<!-- 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">
2018-04-08 20:46:57 +00:00
<link rel="shortcut icon" href="{% static 'ungleich_page/img/favicon.ico' %}" type="image/x-icon" />
2016-07-12 02:18:19 +00:00
<!-- 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>
2017-11-05 18:56:39 +00:00
<body class="error404">
2016-07-12 02:18:19 +00:00
<div class="content-404">
2017-11-05 18:56:39 +00:00
<div class="container text-center">
2016-07-12 02:18:19 +00:00
<h1>&nbsp;</h1>
<h1>404</h1>
2016-07-16 16:58:43 +00:00
<p class="lead">
2017-11-05 18:56:39 +00:00
{% trans '"Sorry, we could not find the page you are looking for!"' %}
</p>
2016-07-12 02:18:19 +00:00
</div>
2018-02-09 01:30:36 +00:00
<!-- jQuery -->
<script src="{% static 'datacenterlight/js/jquery-2.2.4.min.js' %}"></script>
2016-07-12 02:18:19 +00:00
<!-- Bootstrap Core JavaScript -->
2018-02-09 01:30:36 +00:00
<script src="{% static 'datacenterlight/js/bootstrap-3.3.7.min.js' %}"></script>
2016-07-12 02:18:19 +00:00
</body>
</html>
2016-07-12 02:18:19 +00:00