| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
| 3 |
|
| 4 |
<head>
|
| 5 |
<meta http-equiv="Content-Type" content="application/xhtml+xml; charset=iso-8859-1" />
|
| 6 |
<?php print $head ?>
|
| 7 |
<?php print $styles ?>
|
| 8 |
<?php print $scripts ?>
|
| 9 |
<title><?php print $head_title ?></title>
|
| 10 |
</head>
|
| 11 |
|
| 12 |
|
| 13 |
|
| 14 |
<body>
|
| 15 |
|
| 16 |
<div id="container">
|
| 17 |
|
| 18 |
<div id="header"></div>
|
| 19 |
|
| 20 |
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' =>'navcontainer', 'id' => 'navlist')) ?><?php } ?>
|
| 21 |
|
| 22 |
|
| 23 |
<div id="wrapper">
|
| 24 |
<?php if ($sidebar_left) { ?>
|
| 25 |
<div id="left">
|
| 26 |
<ul class="list">
|
| 27 |
<?php print $sidebar_left ?>
|
| 28 |
</ul>
|
| 29 |
</div>
|
| 30 |
<?php } ?>
|
| 31 |
|
| 32 |
|
| 33 |
<?php if ($sidebar_right) { ?>
|
| 34 |
<div id="right">
|
| 35 |
<?php print $sidebar_right ?>
|
| 36 |
</div>
|
| 37 |
<?php } ?>
|
| 38 |
|
| 39 |
<div id="content">
|
| 40 |
<?php if ($mission) { ?><div class="mission"><?php print $mission ?></div><?php } ?>
|
| 41 |
<?php if ($breadcrumb) { ?><div class="breadcrumb"><?php print $breadcrumb ?></div><?php } ?>
|
| 42 |
<?php if ($title) { ?><h2 class="pageTitle"><?php print $title ?></h2><?php } ?>
|
| 43 |
<?php if ($tabs) { ?><div class="tabs"><?php print $tabs ?></div><?php } ?>
|
| 44 |
<?php if ($help) { ?><div class="help"><?php print $help ?></div><?php } ?>
|
| 45 |
<?php if ($messages) { ?><div class="messages"><?php print $messages ?></div><?php } ?>
|
| 46 |
<?php print $content_top; ?>
|
| 47 |
<?php print $content; ?>
|
| 48 |
<?php print $content_bottom; ?>
|
| 49 |
<?php print $feed_icons; ?>
|
| 50 |
<div style="clear: both"></div>
|
| 51 |
</div>
|
| 52 |
|
| 53 |
|
| 54 |
</div>
|
| 55 |
|
| 56 |
|
| 57 |
<div id="footer">
|
| 58 |
<?php print $footer_message ?>
|
| 59 |
<!-- It is greatly appreciated that you leave the below theme information here -->
|
| 60 |
<div id="info"><p>Design by <a href="www.csstemplateheaven.com">Dieter Schneider</a> 2006; Ported to <a href="http://drupal.org/project/purple_beauty">Drupal</a> by <a href="http://www.ronsnexus.com/">Ron Williams</a> for <a href="http://www.lithicmedia.com">Lithic Media</a></p></div>
|
| 61 |
</div>
|
| 62 |
|
| 63 |
|
| 64 |
</div>
|
| 65 |
<?php print $closure ?>
|
| 66 |
</body>
|
| 67 |
</html>
|