<?php

require_once ("smarty/Smarty.class.php");
require_once (
"common.php");

want_show_source();

$tpl_data = array(
    
"file"        => "list.tpl",

    
"list"        => array(
        
"Quote" =>
        
"I can give you a fairly accurate ballpark figure of what something will cost. But we need to agree upon what is to be done. When emailing me for a price quote, please describe as fully as you can what it is you need. Here are some factors to consider: how many pages will the site have? Do you need a user-based login system? Do you need the site developed, designed, or both? Do you have a domain or do you need one to be registered? What sort of web hosting solution will you need? Are you going to be doing ecommerce?" 
    
)
);


$tpl = new Smarty();
$tpl->assign($tpl_data);

$tpl->display("generic.tpl");

?>