<?php
/*
 *  Note: The old page.php moved to 'local-page.php'.  Edit that file
 *  for local, site-specific changes.
 *
 */

$__cache_ext = '.cache';
$__header = 'includes/header.inc.php';
$__footer = 'includes/footer.inc.php';
$__navigation = 'includes/site-navigation.inc.php';

try {
	require_once('init/site.inc.php');
	require_once('local-page.php');
} catch(ACLException $e) {	
	Local::handle403($__node, $e->getMessage());
}	
?>