This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/modules/static_page/views/staticpage/category/list.php

9 lines
338 B
PHP
Raw Normal View History

2011-05-14 07:35:33 +00:00
<!-- @todo Move this back into the controller, so that we only have HTML views -->
2010-11-29 22:41:08 +00:00
<table width="100%" border="0">
<?php foreach ($results as $value) {?>
<tr>
2011-05-14 07:35:33 +00:00
<td class="menu"><a href="<?echo URL::site(Request::current()->uri(array('action'=>'view','id'=>$value->id)));?>"><?php echo $value->name?></a></td>
2010-11-29 22:41:08 +00:00
</tr>
<?}?>
</table>