<!-- @@name: Latest Items -->

<?php 
$root = getPath("");
$path = $PAGE->path;
$paths = FileSystemHelper::GetRecentlyModified($root, $path);
?>


<?php 
$i = 0;
$numMaxItems = 10;
?>

<div class="container">
	
	<h2>Latest Items</h2>
	
	<?php 
foreach ($paths as $path => $date) {
    ?>
		
		<?php 
    $child = new Page($path);
    ?>
		
		<?php 
    if ($i < $numMaxItems) {
        ?>
			<h3><a href="<?php 
        echo $child->getURL();