| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/2002/REC-xhtml1-20020801/DTD/xhtml1-transitional.dtd">
|
| 2 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>">
|
| 3 |
<head>
|
| 4 |
<title><?php print $head_title ?></title>
|
| 5 |
<?php print $head ?>
|
| 6 |
<?php print $styles ?>
|
| 7 |
<?php if ($right);else echo "<style type=\"text/css\" media=\"all\">#main {margin-right:0;} #page{background-image:none;}</style>"; ?>
|
| 8 |
<?php if ($left);else echo "<style type=\"text/css\" media=\"all\">#main {margin-left:0;} #page2{background-image:none;}</style>"; ?>
|
| 9 |
<?php if ($right);elseif($left);else echo "<style type=\"text/css\" media=\"all\">#main {margin:0;} #page2{background-image:none;}</style>"; ?>
|
| 10 |
<!--[if IE]>
|
| 11 |
<style>#sidebar-right {position:relative;left:-1px;}
|
| 12 |
#page2 {border-bottom:2px solid #CCC;}
|
| 13 |
.site-name {position:relative;top:-20px;}
|
| 14 |
.site-slogan {position:relative;top:-35px;}</style>
|
| 15 |
<![endif]-->
|
| 16 |
<?php print $scripts ?>
|
| 17 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
| 18 |
</head>
|
| 19 |
|
| 20 |
<body class="<?php print $body_classes; ?>">
|
| 21 |
<div id="wrapper">
|
| 22 |
<?php if ($logo) { ?><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><img src="<?php print $logo ?>" alt="<?php print t('Home') ?>" /></a><?php } ?>
|
| 23 |
<div id="header-region">
|
| 24 |
<?php print $header ?>
|
| 25 |
</div>
|
| 26 |
<div id="header">
|
| 27 |
<?php if ($search_box) : ?>
|
| 28 |
<div class="search-box"><?php print $search_box ?></div>
|
| 29 |
<?php endif; ?>
|
| 30 |
<?php if ($site_name) { ?>
|
| 31 |
<h1 class='site-name'><a href="<?php print $front_page ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1>
|
| 32 |
<?php } ?>
|
| 33 |
<?php if ($site_slogan) { ?>
|
| 34 |
<div class='site-slogan'><?php print $site_slogan ?></div>
|
| 35 |
<?php } ?>
|
| 36 |
</div>
|
| 37 |
<?php if (isset($primary_links)) { ?>
|
| 38 |
<div id="primary"><?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'navlist')) ?></div>
|
| 39 |
<?php } ?>
|
| 40 |
<div id="page"><div id="page2">
|
| 41 |
<?php if ($left) { ?>
|
| 42 |
<div id="sidebar-left" class="clearfix">
|
| 43 |
<?php print $left ?>
|
| 44 |
</div>
|
| 45 |
<?php } ?>
|
| 46 |
<div id="main" class="clearfix">
|
| 47 |
<?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
|
| 48 |
<div class="inner">
|
| 49 |
<?php print $breadcrumb ?>
|
| 50 |
<h1 class="title"><?php print $title ?></h1>
|
| 51 |
<?php if ($tabs){ ?><div class="tabs"><?php print $tabs ?></div><?php } ?>
|
| 52 |
<?php print $help ?>
|
| 53 |
<?php if ($show_messages && $messages) print $messages; ?>
|
| 54 |
<?php print $content; ?>
|
| 55 |
<?php print $feed_icons; ?>
|
| 56 |
</div>
|
| 57 |
</div>
|
| 58 |
<?php if ($right): ?>
|
| 59 |
<div id="sidebar-right" class="clearfix">
|
| 60 |
<?php print $right ?>
|
| 61 |
</div>
|
| 62 |
<?php endif; ?>
|
| 63 |
<br clear="all"/>
|
| 64 |
<span class="clear"></span>
|
| 65 |
</div>
|
| 66 |
</div>
|
| 67 |
</div>
|
| 68 |
<br clear="all"/>
|
| 69 |
<div id="footer">
|
| 70 |
<?php print $footer;?><br/>
|
| 71 |
<a href="http://www.fireandknowledge.org">Theme</a> <a href="http://www.avioso.com">port</a> sponsored by Duplika <a href="www.duplika.com">Web Hosting</a>.
|
| 72 |
<?php print $closure ?>
|
| 73 |
</div>
|
| 74 |
</body>
|
| 75 |
</html>
|