<?php

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

want_show_source();

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

    
"list"        => array(
        
"BLEA Range Scheduling System" =>
            array(
                
"_" =>
                    
"What do you do when you need to organize a couple dozen firearms instructors on multiple schedules with scattered dates and varying times? You get a scheduling system, of course! Complete with a user authentication system, easy news posting, and as always, an intuitive interface.",
                
"image" => "portfolio/blearange.jpg",
                
"link"     => "http://www.blearange.com"
            
),

        
"BLEA DT Scheduling System" =>
            array(
                
"_" =>
                    
"Another implementatin of the scheduling system.",
                
"image" => "portfolio/blearange.jpg",
                
"link"    => "http://www.bleadt.com"
            
),
            
                
        
"Solutions 4 Manufacturing" =>
            array(
                
"_" =>
                    
"Trying to sell hundreds of various pieces of equipment? Solution: Upload your inventory database from Microsoft Access on your laptop to your website, have it automatically import all the data into a searchable database, generate dynamic inventory pages, and even provide a convenient form for potential customers to contact you about a particular item in your inventory.",
                
"image" => "portfolio/s4m.jpg",
                
"link"    => "http://www.solutions4mfg.com/equipment"
            
),

        
"J. Michael Early, D.D.S." =>
            array(
                
"_" =>
                    
"A professional, elegant look for your dental practice.",
                
"image" => "portfolio/jmearly.jpg",
                
"link"    => "http://www.jmearlydds.com"
            
),

        
"Trilarus Systems" =>
            array(
                
"_" =>
                    
"A clean yet stylish corporate website. Unfortunately this company no longer has their website hosted on the internet.",
                
"image"    => "portfolio/trilarus.jpg",
                
"link"    => "http://www.jones-systems.com"
            
)
                    

    )
);


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

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

?>