Revision 2, 317 bytes
(checked in by andrewgunn, 16 years ago)
|
Created "dev", "mods", and "stable" folders. "Dev" folder currently contains the base EVE-Killboard.net source code. The folder "original" should continue to hold the original code, and never be edited.
|
Line | |
---|
1 | <? |
---|
2 | require_once( "class.page.php" ); |
---|
3 | |
---|
4 | $kb = new Killboard( KB_SITE ); |
---|
5 | |
---|
6 | $html = "<html><head><title>".KB_TITLE." Killboard"."</title></head></html><body>"; |
---|
7 | |
---|
8 | $html .= "<a href=\"?a=post_igb\">Post killmail</a> | <a href=\"?a=portrait_grab\">Update portrait</a>"; |
---|
9 | |
---|
10 | $html .= "</body></html>"; |
---|
11 | |
---|
12 | echo $html; |
---|
13 | ?> |
---|