| 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 |
<?php print $head ?>
|
| 6 |
<?php print $styles ?>
|
| 7 |
<?php print $scripts ?>
|
| 8 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
| 9 |
</head>
|
| 10 |
|
| 11 |
<body <?php print theme("onload_attribute"); ?>>
|
| 12 |
<table border="0" cellpadding="0" cellspacing="0" id="wrapper">
|
| 13 |
<tr>
|
| 14 |
<td colspan="2" class="header_img">
|
| 15 |
<?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 } ?>
|
| 16 |
<?php if ($site_slogan) : ?>
|
| 17 |
<div class="site-slogan"><?php print($site_slogan) ?></div>
|
| 18 |
<?php endif;?>
|
| 19 |
</td>
|
| 20 |
</tr>
|
| 21 |
<tr>
|
| 22 |
<td colspan="2" class="navbar">
|
| 23 |
<div class="primarylinks">
|
| 24 |
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'navlist')) ?><?php } ?>
|
| 25 |
</div>
|
| 26 |
</td>
|
| 27 |
</tr>
|
| 28 |
<tr>
|
| 29 |
<td class="main-content">
|
| 30 |
<div class="primary-container">
|
| 31 |
<?php if ($breadcrumb != ""): ?>
|
| 32 |
<?php print $breadcrumb ?>
|
| 33 |
<?php endif; ?>
|
| 34 |
<?php if ($messages != ""): ?>
|
| 35 |
<div id="message"><?php print $messages ?></div>
|
| 36 |
<?php endif; ?>
|
| 37 |
<?php if ($title != ""): ?>
|
| 38 |
<div align="left"><h2 class="page-title"><?php print $title ?></h2></div>
|
| 39 |
<?php endif; ?>
|
| 40 |
<?php if ($tabs != ""): ?>
|
| 41 |
<?php print $tabs ?>
|
| 42 |
<?php endif; ?>
|
| 43 |
<?php if ($help != ""): ?>
|
| 44 |
<p id="help"><?php print $help ?></p>
|
| 45 |
<?php endif; ?>
|
| 46 |
|
| 47 |
<?php print($content) ?>
|
| 48 |
|
| 49 |
</div>
|
| 50 |
</td>
|
| 51 |
<td class="sidebar">
|
| 52 |
<?php print $sidebar_right ?>
|
| 53 |
<?php print $sidebar_left ?></td>
|
| 54 |
</tr>
|
| 55 |
<tr>
|
| 56 |
<td colspan="2" class="footer_img">
|
| 57 |
<div class="footer">
|
| 58 |
<?php if ($footer_message) : ?>
|
| 59 |
<?php print $footer_message;?>
|
| 60 |
<?php endif; ?>
|
| 61 |
<p><i>Combustion</i> designed by <a href="http://phobos.redfyre.net/">Phobos Gekko</a> | Ported to Drupal 5.0 by <a href="http://themebot.com/">ThemeBot</a>
|
| 62 |
|
| 63 |
</p>
|
| 64 |
</div></td>
|
| 65 |
</tr>
|
| 66 |
</table>
|
| 67 |
<?php print $closure; ?>
|
| 68 |
</body>
|
| 69 |
</html>
|