Revision 132, 1.7 KB
(checked in by knifee, 14 years ago)
|
Changed how the Killmail link works, no longer loads a popup window but rather fetches the killmail and loads it into a div. Also added a new style class for popup.
|
Line | |
---|
1 | <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
---|
2 | <html> |
---|
3 | <head> |
---|
4 | <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1"> |
---|
5 | <title>{$kb_title}</title> |
---|
6 | <link rel="stylesheet" type="text/css" href="{$style_url}/common.css"> |
---|
7 | <link rel="stylesheet" type="text/css" href="{$style_url}/{$style}/style.css"> |
---|
8 | <script language=javascript src="{$common_url}/generic.js"></script> |
---|
9 | |
---|
10 | <style type="text/css"> |
---|
11 | </style> |
---|
12 | </head> |
---|
13 | <body bgcolor="#222222" {$on_load} style="height: 100%"> |
---|
14 | <div align="center" id="popup" style="display:none; |
---|
15 | position:absolute; |
---|
16 | top:217px; width:99%; |
---|
17 | z-index:3; |
---|
18 | padding: 5px;"></div> |
---|
19 | <table class="main-table" height="100%" align="center" bgcolor="#111111" border="0" cellspacing="1" style="height: 100%"> |
---|
20 | <tr style="height: 100%"> |
---|
21 | <td valign="top" height="100%" style="height: 100%"> |
---|
22 | <div id="header"> |
---|
23 | {if $banner_link} |
---|
24 | <a href="{$banner_link}"> |
---|
25 | <img src="{$img_url}/logo/{$banner}.jpg" border="0"> |
---|
26 | </a> |
---|
27 | {else} |
---|
28 | <img src="{$img_url}/logo/{$banner}.jpg" border="0"> |
---|
29 | {/if} |
---|
30 | </div> |
---|
31 | {include file="menu.tpl"} |
---|
32 | <div id="page-title">{$page_title}</div> |
---|
33 | <table cellpadding="0" cellspacing="0" width="100%" border="0"> |
---|
34 | <tr><td valign="top"><div id="content"> |
---|
35 | {$content_html} |
---|
36 | </div></td> |
---|
37 | {if $context_html} |
---|
38 | <td valign="top" align="right"> |
---|
39 | <div id="context">{$context_html}</div> |
---|
40 | </td> |
---|
41 | {/if} |
---|
42 | </tr></table> |
---|
43 | {if $profile} |
---|
44 | <table class="kb-subtable" width="99%" border="0"> |
---|
45 | <tr><td height="100%" align="right" valign="bottom">{$profile_time}s</td></tr> |
---|
46 | </table> |
---|
47 | {else} |
---|
48 | <!-- {$profile_time}s --> |
---|
49 | {/if} |
---|
50 | <div class="counter"></div> |
---|
51 | </td></tr></table> |
---|
52 | </body> |
---|
53 | </html> |
---|