All pastes #2086827 Raw Edit

Miscellany

public text v1 · immutable
#2086827 ·published 2011-10-04 19:08 UTC
rendered paste body
<?php

// Include functions and classes
require_once('smarty/Smarty.class.php');
require_once('classes/database/mysql/functions.php');
require_once('function/error/handler.php');

// Set our custom error handler
set_error_handler(error_handler);

// Instantiate Objects
$smarty = new Smarty;
$smarty->template_dir = '/var/www/consultmahan.com/templates';
$smarty->compile_dir  = '/var/www/consultmahan.com/templates_c';

// Retrieve ticket status for footer
include('run/ticket/status/quick.php');

// Assign other template variables
$smarty->assign('title', 'Network and Server Consulting - ConsultMahan.com');

// Center Column for Home Page
$smarty->assign('column_center','<br>
			<div id="banner">
				<a href="#">
					<img alt="Consult Mahan" width="680px" src="/images/banner_home.png">
				</a>
			</div>
			<hr>
			<br>
			<div id="news">
				<br>
				<h2>Latest News</h2>
				<p class="date">5/12/2010</p>
				<p class="news">
					Let us show you the Mahan difference. Discounted rates available for new customers. 
					<a href="#">Learn More</a>
				</p>
			</div>
			<div id="copy">
				<br>
				<h2>Engineer Spotlight</h2> 
				<p class="bold">Mitch Mahan</p>
				<p class="note">
					As a network and technology enthusiast growing up in a connected world Mitch has been able to absorb his passion in everyday life.
					Earning respected associate and professional certifications as well as valued hands-on experience 
					with companies from small-business to the enterprise, Mitch, makes the perfect engineer to help your business integrate with technology.
				</p>
				<span><a href="#">>  Request Mitch as your Engineer </a></span>
				<img alt="CCNA Certified" class="ccna" src="/images/cisco/ccna.gif" >
				<img alt="CCNP Certified" class="ccnp" src="/images/cisco/ccnp.gif" >
			</div>
');
 
// Display our homepage
$smarty->display('default.tpl');

?>