| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
|
| 2 |
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
|
| 3 |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
|
| 4 |
<head>
|
| 5 |
<title><?php print $head_title ?></title>
|
| 6 |
<?php print $head ?>
|
| 7 |
<?php print $styles ?>
|
| 8 |
<script type="text/javascript"><?php /* Needed to avoid Flash of Unstyle Content in IE */ ?> </script>
|
| 9 |
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
|
| 10 |
<!--[if IE 6]>
|
| 11 |
<link rel="stylesheet" href="<?php print $base_path . $directory ?>/fix.css" type="text/css" />
|
| 12 |
<![endif]-->
|
| 13 |
</head>
|
| 14 |
|
| 15 |
<body>
|
| 16 |
<div id="sidebar">
|
| 17 |
<a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><h1><?php print $site_name ?></h1></a>
|
| 18 |
<h2><?php print $site_slogan ?></h2>
|
| 19 |
|
| 20 |
<div id="menu">
|
| 21 |
<?php if (is_array($primary_links)) :
|
| 22 |
foreach ($primary_links as $link):
|
| 23 |
print $link;
|
| 24 |
endforeach;
|
| 25 |
endif; ?>
|
| 26 |
</div>
|
| 27 |
<?php print $sidebar_left ?>
|
| 28 |
<?php print $sidebar_right ?>
|
| 29 |
</div>
|
| 30 |
|
| 31 |
<div id="content">
|
| 32 |
<?php print $header ?>
|
| 33 |
<h1><?php print $site_name ?></h1>
|
| 34 |
<h2><?php print $site_slogan ?></h2>
|
| 35 |
<?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
|
| 36 |
<?php print $breadcrumb ?>
|
| 37 |
<h3><?php print $title ?></h3>
|
| 38 |
<div class="tabs"><?php print $tabs ?></div>
|
| 39 |
<?php print $help ?>
|
| 40 |
<?php print $messages ?>
|
| 41 |
<?php print $content; ?>
|
| 42 |
<h3>site info</h3>
|
| 43 |
<?php print $footer_message ?>
|
| 44 |
</div>
|
| 45 |
<?php print $closure ?>
|
| 46 |
</body>
|
| 47 |
</html>
|