-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path404.php
More file actions
27 lines (26 loc) · 799 Bytes
/
404.php
File metadata and controls
27 lines (26 loc) · 799 Bytes
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
<?
// Please read /config.php for informations
include "config.php"; ?>
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="description" content="<? echo $full_name; ?>">
<link rel="stylesheet" href="<? echo $root; ?>stylesheet.css" media="screen, handheld" />
<title>404 Error - <? echo $full_name; ?></title>
</head>
<body>
<header><h1><a href="<? echo $root; ?>"><? echo $full_name; ?></a></h1></header>
<section>
<article id="404">
<h2>Error 404</h2>
<p>The file you are looking does not exist, please upload the first version <a href="<? echo $root; ?>plugin/files/publish.php">here</a> or go back to <a href="<? echo $root; ?>index.php">home</a>.</p>
</article>
</section>
<footer>
<p>
<? echo $footer_content; ?><br />
</p>
</footer>
</body>
</html>