<?
//this template file shows how you can call template files INSIDE other template file
$this->template('header.tpl');
$this->display();
$this->template('content.tpl');
$this->display();
?>
write some text and stuff
<?
$this->template('footer.tpl');
$this->display();
?>
|