Revision 331, 3.2 KB
(checked in by knyghtmare, 14 years ago)
|
Added items remotely
V:\users\knyghtmare\edk\application
V:\users\knyghtmare\edk\media
V:\users\knyghtmare\edk\system
V:\users\knyghtmare\edk\.htaccess
V:\users\knyghtmare\edk\index.php
|
Line | |
---|
1 | <?php echo $header; ?> |
---|
2 | <!--<div> |
---|
3 | <h2>Navigation</h2> |
---|
4 | <h2>Weekly Stats</h2> |
---|
5 | <h2>Top Scorers</h2> |
---|
6 | </div> |
---|
7 | |
---|
8 | <div> |
---|
9 | <h2>Latest Kills - Week 37</h2> |
---|
10 | <h3>Saturday, September 13th (Today)</h3> |
---|
11 | <table> |
---|
12 | <tr> |
---|
13 | <th>Ship</th> |
---|
14 | <th>Name</th> |
---|
15 | <th>Corp</th> |
---|
16 | <th>Alliance</th> |
---|
17 | <th>System</th> |
---|
18 | <th>Time</th> |
---|
19 | </tr> |
---|
20 | </table> |
---|
21 | <h3>Friday, September 12th (Yesterday)</h3> |
---|
22 | <h3>Thursday, September 11th (2 days ago)</h3> |
---|
23 | |
---|
24 | <h2>Campaigns</h2> |
---|
25 | |
---|
26 | </div>--> |
---|
27 | |
---|
28 | <!-- Left Column --> |
---|
29 | <div id="left-column"> |
---|
30 | |
---|
31 | <div class="box"> |
---|
32 | <h2><strong><img src="./media/skins/default/images/headers/weekly-stats.jpg" alt="Weekly Statistics" /></strong></h2> |
---|
33 | <div class="content"> |
---|
34 | <table border="0" cellpadding="0" cellspacing="0" class="prettyTable"> |
---|
35 | <tr> |
---|
36 | <th class="even shipclass">Ship Class</th> |
---|
37 | <th>K</th> |
---|
38 | <th>L</th> |
---|
39 | |
---|
40 | <th class="shipclass">Ship Class</th> |
---|
41 | <th>K</th> |
---|
42 | <th>L</th> |
---|
43 | </tr> |
---|
44 | <?php |
---|
45 | $i = 0; |
---|
46 | foreach($ship_classes as $class) |
---|
47 | { |
---|
48 | $className=""; |
---|
49 | if ($i%2==0) |
---|
50 | { |
---|
51 | $className="even"; |
---|
52 | echo '<tr>'; |
---|
53 | } else $className="odd"; |
---|
54 | $shipclass=$class->ship_class_name; |
---|
55 | if (strlen($shipclass)>21) $shipclass=substr($shipclass,0,18).'...'; |
---|
56 | echo '<td class="'.$className.'">' . $shipclass . '</td><td class="kill">0</td><td class="loss">0</td>'; |
---|
57 | if ($i%2!=0) echo '</tr>'; |
---|
58 | $i++; |
---|
59 | } |
---|
60 | if ($i%2!=0) echo '</tr>'; |
---|
61 | echo '<tr class="total"><td class="even">Total</td><td class="kill">0</td><td class="loss">0</td></tr>'; |
---|
62 | ?> |
---|
63 | </table> |
---|
64 | </div> |
---|
65 | </div> |
---|
66 | |
---|
67 | </div> |
---|
68 | |
---|
69 | <!-- Right Column --> |
---|
70 | <div id="right-column"> |
---|
71 | |
---|
72 | <div class="box"> |
---|
73 | <h2><strong><img src="./media/skins/default/images/headers/latest-kills.jpg" alt="Latest Kills" /></strong></h2> |
---|
74 | |
---|
75 | <div class="content"> |
---|
76 | <h3>Tuesday, September 16th (Today)</h3> |
---|
77 | <table border="0" cellpadding="0" cellspacing="0" class="prettyTable" width="95%"> |
---|
78 | <tr> |
---|
79 | <th>Ship</th> |
---|
80 | <th>Name</th> |
---|
81 | <th>Corp</th> |
---|
82 | <th>Alliance</th> |
---|
83 | <th>System</th> |
---|
84 | <th>Time</th> |
---|
85 | <th>#C</th> |
---|
86 | </tr> |
---|
87 | <tr> |
---|
88 | <td>Crow</td> |
---|
89 | <td>Ninerail</td> |
---|
90 | <td>ROMANIA Renegades</td> |
---|
91 | <td>STYX.</td> |
---|
92 | <td>M-OEE8</td> |
---|
93 | <td>02:43</td> |
---|
94 | <td>0</td> |
---|
95 | </tr> |
---|
96 | </table> |
---|
97 | </div> |
---|
98 | </div> |
---|
99 | |
---|
100 | </div> |
---|
101 | <?php echo $footer; ?> |
---|