2011-04-16 20:31:32 +04:00
|
|
|
<?php
|
|
|
|
/*
|
2011-04-16 21:42:58 +04:00
|
|
|
* Template for Apps
|
2011-04-16 20:31:32 +04:00
|
|
|
*/
|
|
|
|
?>
|
2011-04-16 21:42:58 +04:00
|
|
|
<h1>Apps Repository</h1>
|
2011-04-16 20:31:32 +04:00
|
|
|
|
|
|
|
|
|
|
|
<table cellspacing="0">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2011-04-16 21:42:58 +04:00
|
|
|
<th></th>
|
2011-04-16 20:31:32 +04:00
|
|
|
<th>Name</th>
|
|
|
|
<th>Modified</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2011-04-16 21:42:58 +04:00
|
|
|
<?php foreach($_["apps"] as $app): ?>
|
2011-04-16 20:31:32 +04:00
|
|
|
<tr>
|
2011-04-16 21:42:58 +04:00
|
|
|
<td class="filename"><?php if($app["preview"] <> "") { echo('<a href=""><img border="0" src="'.$app["preview"].'" /></a>'); } ?> </a></td>
|
|
|
|
<td class="filename"><a href="" title=""><?php echo $app["name"]; ?></a></td>
|
|
|
|
<td class="date"><?php echo date($app["changed"]); ?></td>
|
2011-04-16 20:31:32 +04:00
|
|
|
<td class="fileaction"><a href="" title=""><img src="images/drop-arrow.png" alt="+" /></a></td>
|
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|