092a8bc7ce
- Removed all backup/duplicate files - Removed test files from root - Consolidated documentation to /docs/ - Moved scripts to /scripts/ - Renamed f_* directories (removed prefix) - Organized icons and assets - Removed unused vendor directories - Cleaned up redundant config files
87 lines
1.5 KiB
PHP
87 lines
1.5 KiB
PHP
<?php http_response_code(404);?>
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="robots" content="noindex,nofollow">
|
|
<title>404 Page Not Found</title>
|
|
<style>
|
|
div.logo {
|
|
height: 200px;
|
|
display: inline-block;
|
|
opacity: 1;
|
|
position: absolute;
|
|
top: 2rem;
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
display: block;
|
|
}
|
|
body {
|
|
height: 100%;
|
|
background: #fafafa;
|
|
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
|
|
color: #777;
|
|
font-weight: 300;
|
|
}
|
|
h1 {
|
|
font-weight: lighter;
|
|
letter-spacing: 0.8;
|
|
font-size: 3rem;
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
color: #222;
|
|
}
|
|
.wrap {
|
|
max-width: 1024px;
|
|
margin: 8rem auto;
|
|
padding: 2rem;
|
|
background: #fff;
|
|
text-align: center;
|
|
border: 1px solid #efefef;
|
|
border-radius: 0.5rem;
|
|
position: relative;
|
|
}
|
|
pre {
|
|
white-space: normal;
|
|
margin-top: 1.5rem;
|
|
}
|
|
code {
|
|
background: #fafafa;
|
|
border: 1px solid #efefef;
|
|
padding: 0.5rem 1rem;
|
|
border-radius: 5px;
|
|
display: block;
|
|
}
|
|
p {
|
|
margin-top: 1.5rem;
|
|
font-size: 28px;
|
|
}
|
|
.footer {
|
|
margin-top: 2rem;
|
|
border-top: 1px solid #efefef;
|
|
padding: 1em 2em 0 2em;
|
|
font-size: 85%;
|
|
color: #999;
|
|
}
|
|
a:active,
|
|
a:link,
|
|
a:visited {
|
|
color: #dd4814;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="logo">
|
|
<a href="/"><img src="/f_scripts/fe/img/logo-header.png"></a>
|
|
</div>
|
|
<div class="wrap">
|
|
<h1>404 - Page Not Found</h1>
|
|
|
|
<p>
|
|
Sorry! Cannot seem to find the page you were looking for.
|
|
</p>
|
|
</div>
|
|
</body>
|
|
</html>
|
|
<?php die();?>
|