blob: 77555a23c0e3092c5f494112919d1049a486d55c (
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
28
29
|
<?php include_once(getenv("DOCUMENT_ROOT").'/0/server.php'); ?>
<?xml version="1.0" encoding="utf-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-us" lang="en-us" dir="ltr" >
<head>
<?php echo layout::head('HTTP-404','ltsBlog'); ?>
</head>
<body>
<h1>Oh Sn*p!</h1>
<?php echo layout::nav(); ?>
<div class="main">
<p class="open">404 — Not Found</p>
<p>I'm sure you know what 404 means by now. If you got here by
an internal link, shoot me a email at
<?php echo layout::email('LukeShu@sbcglobal.net'); ?>
</p>
<p>Here's a list of things I think you may have been looking for:<ul>
<li><a href="/1/">Home</a></li>
<li><a href="/1/comicjk/viewer.php">The Comic JK Archives</a></li>
<li><a href="/1/FRC/">FRC 1024 Kil-A-Bytes related stuffs</a></li>
<li><?php echo server::search_ltsBlog(); ?></li>
</ul></p>
<p class="sig">~ The Mgmt</p>
</div>
<?php echo layout::footer(); ?>
</body>
</html>
|