| 1 |
<?php
|
| 2 |
// $Id$
|
| 3 |
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
| 4 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="<?php print $language->language ?>" xml:lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
| 5 |
<head>
|
| 6 |
<title><?php print $head_title ?></title>
|
| 7 |
<meta http-equiv="Content-Style-Type" content="text/css" />
|
| 8 |
<?php print $head ?>
|
| 9 |
<?php print $styles ?>
|
| 10 |
<?php print $scripts ?>
|
| 11 |
</head>
|
| 12 |
<body>
|
| 13 |
<div id="container">
|
| 14 |
<div id="page"<?php if (!$sidebar_left) { print " class='wide-page'"; } ?>>
|
| 15 |
<div id="main">
|
| 16 |
<div id="content">
|
| 17 |
<?php print $header ?>
|
| 18 |
<?php if ($mission) { ?><div id="mission"><?php print $mission ?></div><?php } ?>
|
| 19 |
<div class="tabs"><?php print $tabs ?></div>
|
| 20 |
<?php if ($title) { ?> <h1 class="title"><?php print $title ?></h1> <?php } ?>
|
| 21 |
<?php print $help ?>
|
| 22 |
<?php print $messages ?>
|
| 23 |
<?php print $content; ?>
|
| 24 |
<?php print $breadcrumb ?>
|
| 25 |
</div>
|
| 26 |
<div id="right">
|
| 27 |
<?php if ($sidebar_top) { ?>
|
| 28 |
<div id="sidebar-top">
|
| 29 |
<?php print $sidebar_top ?>
|
| 30 |
</div>
|
| 31 |
<?php } ?>
|
| 32 |
<?php if ($sidebar_left) { ?>
|
| 33 |
<div id="sidebar-left">
|
| 34 |
<?php print $sidebar_left ?>
|
| 35 |
</div>
|
| 36 |
<?php } ?>
|
| 37 |
<?php if ($sidebar_right) { ?>
|
| 38 |
<div id="sidebar-right">
|
| 39 |
<?php print $search_box ?>
|
| 40 |
<?php print $sidebar_right ?>
|
| 41 |
</div>
|
| 42 |
<?php } ?>
|
| 43 |
</div>
|
| 44 |
<div class="clear-both"></div>
|
| 45 |
</div>
|
| 46 |
<div id="header">
|
| 47 |
<div id="title">
|
| 48 |
<?php if ($site_name) { ?><h1><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
|
| 49 |
<?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
|
| 50 |
<div id="title-spacer"></div>
|
| 51 |
</div>
|
| 52 |
<div id="nav">
|
| 53 |
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'navlist')) ?><?php } ?>
|
| 54 |
</div>
|
| 55 |
</div>
|
| 56 |
<div id="footer">
|
| 57 |
<?php print $footer_message ?>
|
| 58 |
<p><a href="http://blamcast.net/">Drupal theme</a> designed by Blamcast.</p>
|
| 59 |
</div>
|
| 60 |
</div>
|
| 61 |
</div>
|
| 62 |
<?php print $closure ?>
|
| 63 |
</body>
|
| 64 |
</html>
|