| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language ?>" xml:lang="<?php print $language ?>">
|
| 3 |
<head>
|
| 4 |
<title><?php print $head_title ?></title>
|
| 5 |
<meta http-equiv="Content-Style-Type" content="text/css" />
|
| 6 |
<?php print $head ?><?php print $styles ?>
|
| 7 |
</head>
|
| 8 |
<body <?php print theme("onload_attribute"); ?>>
|
| 9 |
<div id="page">
|
| 10 |
<div id="topmenu">
|
| 11 |
<?php if (is_array($primary_links)) : ?>
|
| 12 |
<ul id="primarylink">
|
| 13 |
<?php foreach ($primary_links as $link): ?>
|
| 14 |
<li><?php print $link?></li>
|
| 15 |
<?php endforeach; ?>
|
| 16 |
</ul>
|
| 17 |
<?php endif; ?>
|
| 18 |
</div>
|
| 19 |
<div id="header">
|
| 20 |
<h1 class="sitename"><a href="<?php print url() ?>" title="<?php print($site_name) ?>"><?php print($site_name) ?></a></h1>
|
| 21 |
</div>
|
| 22 |
<div id="topcontent">
|
| 23 |
</div>
|
| 24 |
<div id="content" class="narrowcolumn">
|
| 25 |
<div class="navigation"> <?php print $breadcrumb ?> </div>
|
| 26 |
<?php if ($messages != ""): ?>
|
| 27 |
<div id="message"><?php print $messages ?></div>
|
| 28 |
<?php endif; ?>
|
| 29 |
<?php if ($mission != ""): ?>
|
| 30 |
<div id="mission"><?php print $mission ?></div>
|
| 31 |
<?php endif; ?>
|
| 32 |
<?php if ($title != ""): ?>
|
| 33 |
<h2 class="page-title"><?php print $title ?></h2>
|
| 34 |
<?php endif; ?>
|
| 35 |
<?php if ($tabs != ""): ?>
|
| 36 |
<?php print $tabs ?>
|
| 37 |
<?php endif; ?>
|
| 38 |
<?php if ($help != ""): ?>
|
| 39 |
<p id="help"><?php print $help ?></p>
|
| 40 |
<?php endif; ?>
|
| 41 |
<!-- start main content -->
|
| 42 |
<?php print($content) ?>
|
| 43 |
<!-- end main content -->
|
| 44 |
</div>
|
| 45 |
<div id="sidebar">
|
| 46 |
<?php print $sidebar_left ?> <?php print $sidebar_right ?> </div>
|
| 47 |
<hr />
|
| 48 |
<div id="footer">
|
| 49 |
<p>
|
| 50 |
<?php if ($footer_message) : ?>
|
| 51 |
<?php print $footer_message;?><br />
|
| 52 |
<?php endif; ?> Designed By
|
| 53 |
<a href="http://www.afterdeathgraphics.com/">AfterDeath Graphics</a>
|
| 54 |
</div>
|
| 55 |
</div>
|
| 56 |
<?php print $closure;?>
|
| 57 |
</body>
|
| 58 |
</html>
|