| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
?>
|
| 4 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 5 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
| 6 |
|
| 7 |
<head>
|
| 8 |
<title><?php print $head_title ?></title>
|
| 9 |
<?php print $head ?>
|
| 10 |
<?php print $styles ?>
|
| 11 |
<?php print $scripts ?>
|
| 12 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
| 13 |
</head>
|
| 14 |
|
| 15 |
<body>
|
| 16 |
|
| 17 |
<div id="page">
|
| 18 |
<div id="header">
|
| 19 |
<?php if ($logo) { ?><div id="logo"><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a></div><?php } ?>
|
| 20 |
<?php if ($site_name) { ?><h1><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
|
| 21 |
<?php if ($site_slogan) { ?><div class="description"><?php print $site_slogan ?></div><?php } ?>
|
| 22 |
</div>
|
| 23 |
|
| 24 |
<div id="menulinks">
|
| 25 |
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist')) ?><?php } ?>
|
| 26 |
</div>
|
| 27 |
|
| 28 |
<div id="banner">
|
| 29 |
<div id="bannerleft">
|
| 30 |
<?php if ($bannerleft) { ?> <?php print $bannerleft ?> <?php } ?>
|
| 31 |
</div>
|
| 32 |
|
| 33 |
<div id="bannerright">
|
| 34 |
<?php if ($bannerright) { ?> <?php print $bannerright ?> <?php } ?>
|
| 35 |
</div>
|
| 36 |
</div>
|
| 37 |
|
| 38 |
<div id="mainarea">
|
| 39 |
<div id="contentarea">
|
| 40 |
|
| 41 |
<?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
|
| 42 |
<?php print $breadcrumb ?>
|
| 43 |
<h1><?php print $title ?></h1>
|
| 44 |
<div class="tabs"><?php print $tabs ?></div>
|
| 45 |
<?php if ($show_messages) { print $messages; } ?>
|
| 46 |
<?php print $help ?>
|
| 47 |
<div class="content"><?php print $content; ?></div>
|
| 48 |
<?php print $feed_icons; ?>
|
| 49 |
|
| 50 |
</div>
|
| 51 |
</div>
|
| 52 |
|
| 53 |
<div id="sidebar">
|
| 54 |
<?php if ($right) { ?> <?php print $right ?> <?php } ?>
|
| 55 |
</div>
|
| 56 |
|
| 57 |
<div id="footer">
|
| 58 |
<div id="footerleft"><?php print $footer_message ?><br/></div>
|
| 59 |
<div id="footerright">Designed by <a href="http://www.free-css-templates.com/">Free CSS Templates</a> and Ported by <a href="http://goodwinsolutions.com">Goodwin Web Solutions</a></div>
|
| 60 |
</div>
|
| 61 |
|
| 62 |
</div>
|
| 63 |
</body>
|
| 64 |
|
| 65 |
</html>
|