| 
<?
//Example 1 - Simple Usage
 
 require('../class.DevTemplate.php');
 $template=new DevTemplate();
 $date=date("F j, Y, g:i a");//date to insert
 //example of simple usage with only one template file and any number of "inserts".
 //minor_template and morph_tag parameters ignored !
 $template->express("_page1.html","","",Array("date=$date"));
 //Also you can send "insert" parameter as string if there is only one
 
 ?>
 |