<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title><?php echo $title; ?></title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="robots" content="index, follow" />
<!-- Stylesheets -->
<link rel="stylesheet" type="text/css" href="assets/css/style.css" media="screen" />
<link rel="stylesheet" type="text/css" href="assets/css/print.css" media="print" />
<!--[if lte IE 8]><link rel="stylesheet" type="text/css" href="assets/css/ie8.css" media="screen" /><![endif]-->
<!--[if lt IE 7]><link rel="stylesheet" type="text/css" href="assets/css/ie6.css" media="screen" /><![endif]-->
<!-- Base Javascript -->
<script type="text/javascript" src="assets/js/jquery.min.js"></script>
<script type="text/javascript" src="assets/js/admin-custom.js"></script>
<!-- JS/CSS Plugins -->
<link rel="stylesheet" type="text/css" href="assets/js/facybox/facybox.css" media="screen" />
<script type="text/javascript" src="assets/js/facybox/facybox.js"></script>
<!-- Extras -->
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
<!-- IE <img>:hover flicker fix -->
<script type="text/javascript"><!--
try {
document.execCommand("BackgroundImageCache", false, true);
} catch(err) {}
/* IE6 flicker hack from http://dean.edwards.name/my/flicker.html */
--></script>
</head>
<body <?php page_id(); ?> >
<div class="wrapper" id="top" >
<div id="header">
<div class="logo"><?php echo meta('site_name'); ?></div>
<?php
if(isset($_SESSION['password'])){
# links that only show when user is logged in
?>
<div class="right">Welcome <b><a href="./profile.php"><?php echo $_SESSION['first_name']; ?> <?php echo $_SESSION['last_name']; ?></a></b> | <a href="./logout.php">Logout</a></div>
<?php
}
?>
</div>