blob: fa004c38377cce32fa4737bf787be30a4550a04a (
plain)
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
|
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>404 - Not Found</title>
<link rel='shortcut icon' href='/favicon.ico' type='image/x-icon'>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<link rel="stylesheet" href="/css/style.css">
<?php require_once("static/noscript.html"); ?>
</head>
<body>
<?php require_once("static/header.php"); ?>
<div class='container'>
<div class='text-center'>
<div class='row'>
<h1>404. That's an error.</h1>
</div>
<br>
<div class='row'>
<p>The requested URL <?php echo htmlentities($_SERVER['REQUEST_URI']); ?> was not found on this server.</p>
</div>
</div>
</div>
<?php require_once("static/foot.php"); ?>
|