forked from NamelessMC/Nameless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
404.php
42 lines (36 loc) · 1.12 KB
/
404.php
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
/*
* Made by Samerton
* http://worldscapemc.co.uk
*
* License: MIT
* Copyright (c) 2016 Samerton
*/
header($_SERVER["SERVER_PROTOCOL"]." 404 Not Found");
?>
<!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="<?php echo $sitename; ?>">
<link rel="icon" href="/core/assets/favicon.ico">
<title>404 • <?php echo $sitename; ?></title>
<link href="/core/assets/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<br /><br /><br />
<div class="container">
<div class="jumbotron">
<h1>404</h1>
<h4><?php echo $general_language['404']; ?></h4>
<div class="btn-group" role="group" aria-label="...">
<a href="#" class="btn btn-primary btn-lg" onclick="window.history.back()"><?php echo $general_language['back']; ?></a>
<a href="/" class="btn btn-success btn-lg"><?php echo $navbar_language['home']; ?></a>
</div>
</div>
</div>
</body>
</html>