<?php
// Define constants
define('SECTION_TITLE''Scripts');

require(
'classes/bTemplate.php');
$tpl = & new bTemplate();
$tpl->set('section_title'SECTION_TITLE);
$tpl->set('content'$tpl->fetch('templates/scripts.tpl'));
$tpl->set('file_name'$_SERVER['PHP_SELF']);
echo 
$tpl->fetch('templates/index.tpl');
?>