<?php
$path = dirname(__FILE__).'/';
include($path.'functions.php');
$template = file_get_contents($path.'template.htm');
if(!IsSet($page)) $page='home';
ob_start();
include($path.'pages/'.$page.'.txt');
$contenu = ob_get_contents();
ob_end_clean();
echo ereg_replace('{{contenu}}', $contenu, $template);
?>
