| 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">
|
| 3 |
<head>
|
| 4 |
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
|
| 5 |
<title><?php print $head_title ?></title>
|
| 6 |
<link href="style.css" rel="stylesheet" type="text/css" />
|
| 7 |
<?php print $head ?>
|
| 8 |
<?php print $styles ?>
|
| 9 |
<?php print $scripts ?>
|
| 10 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
| 11 |
</head>
|
| 12 |
|
| 13 |
<body>
|
| 14 |
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 15 |
<tr>
|
| 16 |
<td class="shadow_left"> </td>
|
| 17 |
<td class="header_column">
|
| 18 |
<table width="100%" border="0" cellspacing="10" cellpadding="0">
|
| 19 |
<tr>
|
| 20 |
<td class="logo_area">
|
| 21 |
<?php if ($site_name) { ?><h1><a style="text-decoration:none" href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
|
| 22 |
<?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
|
| 23 |
</td>
|
| 24 |
<td width="300">
|
| 25 |
Search the website <br /><?php print $search_box ?>
|
| 26 |
</td>
|
| 27 |
</tr>
|
| 28 |
</table></td>
|
| 29 |
<td class="shadow_right"> </td>
|
| 30 |
</tr>
|
| 31 |
<tr>
|
| 32 |
<td class="horizontal_column"> </td>
|
| 33 |
<td class="horizontal_center"><table width="100%" border="0" cellpadding="0" cellspacing="0" class="linkcontainer">
|
| 34 |
<tr>
|
| 35 |
|
| 36 |
<?php if (is_array($primary_links)) : ?>
|
| 37 |
<tr>
|
| 38 |
<?php foreach ($primary_links as $link): ?>
|
| 39 |
<td><div class="navigation"><?php
|
| 40 |
|
| 41 |
print "<a href='" . $link['href'] . "' class=\"main_link\">" . $link['title'] . "</a>";
|
| 42 |
|
| 43 |
?></div></td>
|
| 44 |
|
| 45 |
<?php endforeach; ?>
|
| 46 |
</tr>
|
| 47 |
<?php endif; ?>
|
| 48 |
</div>
|
| 49 |
|
| 50 |
</tr>
|
| 51 |
</table></td>
|
| 52 |
<td class="horizontal_column"> </td>
|
| 53 |
</tr>
|
| 54 |
<tr>
|
| 55 |
<?php if ($sidebar_right) { ?> <td class="shadow_left"> </td>
|
| 56 |
<td class="below_header">
|
| 57 |
<?php print $sidebar_right ?></td>
|
| 58 |
<td class="shadow_right"> </td>
|
| 59 |
</tr><?php } ?>
|
| 60 |
</div>
|
| 61 |
|
| 62 |
<tr>
|
| 63 |
<td class="shadow_left"> </td>
|
| 64 |
<td class="main_content_box"><table width="100%" border="0" cellspacing="0" cellpadding="0">
|
| 65 |
<tr>
|
| 66 |
<?php if ($sidebar_left) { ?><td class="left_content">
|
| 67 |
<?php print $sidebar_left ?>
|
| 68 |
</td><?php } ?>
|
| 69 |
<td class="body_content"><h2><?php print $title ?></h2> <br />
|
| 70 |
<br />
|
| 71 |
<div class="tabs"><?php print $tabs ?></div>
|
| 72 |
<?php print $help ?>
|
| 73 |
<?php print $messages ?>
|
| 74 |
<?php print $content; ?>
|
| 75 |
<?php print $feed_icons; ?>
|
| 76 |
</td>
|
| 77 |
</tr>
|
| 78 |
</table></td>
|
| 79 |
<td class="shadow_right"> </td>
|
| 80 |
</tr>
|
| 81 |
<tr>
|
| 82 |
<td class="shadow_left"> </td>
|
| 83 |
<td class="middle_spacer"><div class="bottom_content"><?php print $footer_message ?></div></td>
|
| 84 |
<td class="shadow_right"> </td>
|
| 85 |
</tr>
|
| 86 |
<tr>
|
| 87 |
<td class="shadow_left"> </td>
|
| 88 |
<!-- It is greatly appreciated that you leave the below theme information here -->
|
| 89 |
<td class="bottom_link_container">Theme created by <a href="http://www.ronsnexus.com/">Ron Williams</a> for <a href="http://www.lithicmedia.com/">Lithic Media</a></td>
|
| 90 |
<td class="shadow_right"> </td>
|
| 91 |
</tr>
|
| 92 |
</table>
|
| 93 |
</body>
|
| 94 |
</html>
|