Revision 1, 417 bytes
(checked in by andrewgunn, 14 years ago)
|
Added original EVE-Killboard.net source code.
|
Line | |
---|
1 | <? |
---|
2 | require_once( "class.page.php" ); |
---|
3 | |
---|
4 | $page = new Page( "Down for maintenance" ); |
---|
5 | $html .= "The killboard is currently down for maintenance and/or updates. We'll be back soon !"; |
---|
6 | if ( KB_MAINTENANCE_MSG != "" ) |
---|
7 | $html .= "<p><br/>Additional info: ".KB_MAINTENANCE_MSG; |
---|
8 | $html .= "<p><br/><a href=\"http://eve-killboard.net\">eve-killboard.net</a>"; |
---|
9 | |
---|
10 | $page->setContent( $html ); |
---|
11 | $page->generate(); |
---|
12 | ?> |
---|