32 lines (27 with data), 684 Bytes
<table>
<tr>
<th>Id</th>
<th>Title</th>
<th>Created</th>
</tr>
<!-- Here's where we loop through our $posts array, printing out post info -->
<?php foreach ($Content as $value){ ?>
<tr>
<td><?php echo $value['Content']['id']; ?></td>
<td>
<?php echo $html->link($value['Content']['title'], "/Content/view/".$value['Content']['id']); ?>
</td>
<td><?php echo $value['Content']['created_by']; ?></td>
</tr>
<?php
};
?>
</table>
<?php
echo $tree->generate($contentTree, array (
'model' => 'Aco'
));
echo "<pre>";
var_dump($Content);
echo "</pre>";
?>