| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
| 3 |
|
| 4 |
<head>
|
| 5 |
<title><?php print $head_title ?></title>
|
| 6 |
<?php print $head ?>
|
| 7 |
<?php print $styles ?>
|
| 8 |
<?php print $scripts ?>
|
| 9 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
| 10 |
</head>
|
| 11 |
|
| 12 |
<body>
|
| 13 |
|
| 14 |
<table id="header" border="0" cellspacing="0" cellpadding="0" onClick="window.location = '<?php print $base_path ?>'" onMouseOver="this.style.cursor='pointer'">
|
| 15 |
<tr>
|
| 16 |
<td id="searchbar" colspan="2">
|
| 17 |
<?php print $search_box ?>
|
| 18 |
</td>
|
| 19 |
</tr>
|
| 20 |
<tr>
|
| 21 |
<td id="logo">
|
| 22 |
<?php if ($logo) { ?><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
|
| 23 |
<?php if ($site_name) { ?><h1 class='site-name'><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
|
| 24 |
<?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
|
| 25 |
</td>
|
| 26 |
<td id="menu">
|
| 27 |
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'navlist')) ?><?php } ?>
|
| 28 |
<?php if (isset($secondary_links)) { ?><?php print theme('links', $secondary_links, array('class' =>'links', 'id' => 'subnavlist')) ?><?php } ?>
|
| 29 |
</td>
|
| 30 |
</tr>
|
| 31 |
<tr id="headerbottom">
|
| 32 |
<td colspan="2"><div><?php print $header ?> </div></td>
|
| 33 |
</tr>
|
| 34 |
</table>
|
| 35 |
|
| 36 |
<table id="content">
|
| 37 |
<tr>
|
| 38 |
<?php if ($sidebar_left) { ?><td id="sidebar-left">
|
| 39 |
<?php print $sidebar_left ?>
|
| 40 |
</td><?php } ?>
|
| 41 |
<td valign="top">
|
| 42 |
<?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
|
| 43 |
<div id="main">
|
| 44 |
<?php print $breadcrumb ?>
|
| 45 |
<h1 class="title"><?php print $title ?></h1>
|
| 46 |
<div class="tabs"><?php print $tabs ?></div>
|
| 47 |
<?php print $help ?>
|
| 48 |
<?php print $messages ?>
|
| 49 |
<?php print $content; ?>
|
| 50 |
<?php print $feed_icons; ?>
|
| 51 |
</div>
|
| 52 |
</td>
|
| 53 |
<?php if ($sidebar_right) { ?><td id="sidebar-right">
|
| 54 |
<?php print $sidebar_right ?>
|
| 55 |
</td><?php } ?>
|
| 56 |
</tr>
|
| 57 |
</table>
|
| 58 |
|
| 59 |
<table id="footer">
|
| 60 |
<tr>
|
| 61 |
<td>
|
| 62 |
<?php print $footer_message ?>
|
| 63 |
<!-- It is greatly appreciated that you leave the below theme information here -->
|
| 64 |
<p>Theme created by <a href="http://www.ronsnexus.com">Ron Williams</a> for <a href="http://www.lithicmedia.com">Lithic Media</a></p>
|
| 65 |
</td>
|
| 66 |
</tr>
|
| 67 |
</table>
|
| 68 |
|
| 69 |
|
| 70 |
<?php print $closure ?>
|
| 71 |
</body>
|
| 72 |
</html>
|
| 73 |
|