Rev 447 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
169 | tom | 1 | <?php |
2 | |||
446 | tom | 3 | header('Status: 404 Not Found'); |
4 | |||
169 | tom | 5 | require '_taios.php'; |
6 | |||
446 | tom | 7 | $page = new Taios_Page('404 - Page not found', '/'); |
169 | tom | 8 | $page->drawHeader(); |
9 | write('<h3>Pages</h3>'); |
||
484 | muzer | 10 | $page->drawMenuItem('FredFace', '~freddie/'); |
447 | tom | 11 | $page->drawMenuItem('Muzer', '~muzer/'); |
169 | tom | 12 | $page->drawMiddle(); |
13 | |||
14 | ?> |
||
15 | |||
16 | <p class="bold">404 - Page not found</p> |
||
17 | <p>The page you requested could not be found.</p> |
||
307 | tom | 18 | <br /> |
169 | tom | 19 | |
20 | <h4>Useful Links</h4> |
||
21 | |||
22 | <?php |
||
23 | |||
24 | $page->drawMenuItem('Tim32 Homepage', 'index.php'); |
||
361 | tom | 25 | $page->drawMenuItem('Youfail.org', 'http://youfail.org'); |
169 | tom | 26 | |
484 | muzer | 27 | ?> |
28 | <iframe src="http://notfound-static.fwebservices.be/404/index.html?&key=30aca9cedc0df2682afc4e195eedb1e2" width="100%" height="650" frameborder="0"></iframe> |
||
29 | <?php |
||
169 | tom | 30 | $page->drawFooter(); |
31 | |||
32 | ?> |