| 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" class="wide-page">
|
| 15 |
<div id="main">
|
| 16 |
<div id="content">
|
| 17 |
<?php print $header ?>
|
| 18 |
<?php print $breadcrumb ?>
|
| 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 |
<div id="sidebar-left">
|
| 28 |
<div class="block" id="right-toggle"><a>[<?php print t('Expand'); ?></a>]</div>
|
| 29 |
<?php print $sidebar_left ?>
|
| 30 |
<?php print $sidebar_right ?>
|
| 31 |
<?php print $search_box ?>
|
| 32 |
</div>
|
| 33 |
</div>
|
| 34 |
<div class="clear-both"></div>
|
| 35 |
</div>
|
| 36 |
<div class="clear-both"></div>
|
| 37 |
<div id="header">
|
| 38 |
<div id="title">
|
| 39 |
<?php if ($site_name) { ?><h1><a href="<?php print $base_path ?>" title="<?php print t('Home') ?>"><?php print $site_name ?></a></h1><?php } ?>
|
| 40 |
<?php if ($site_slogan) { ?><div class='site-slogan'><?php print $site_slogan ?></div><?php } ?>
|
| 41 |
<div id="title-spacer"></div>
|
| 42 |
</div>
|
| 43 |
<div id="nav">
|
| 44 |
<?php if (isset($primary_links)) { ?><?php print theme('links', $primary_links, array('class' =>'links', 'id' => 'navlist')) ?><?php } ?>
|
| 45 |
</div>
|
| 46 |
</div>
|
| 47 |
<div id="footer">
|
| 48 |
<?php print $footer_message ?>
|
| 49 |
<p><a href="http://blamcast.net/">Drupal theme</a> designed by Blamcast.</p>
|
| 50 |
</div>
|
| 51 |
</div>
|
| 52 |
</div>
|
| 53 |
<script type="text/javascript">
|
| 54 |
/* <![CDATA[ */
|
| 55 |
$(document).ready(function(){
|
| 56 |
$("#right-toggle").click( function() {
|
| 57 |
$("#right-toggle").hide();
|
| 58 |
$("#content").width("953px");
|
| 59 |
$("#sidebar-left").css("padding-left","775px");
|
| 60 |
$("#right").css("float","none");
|
| 61 |
$("#content").css("border-right","1px solid #1A4864");
|
| 62 |
$("#content").css("border-left","1px solid #1A4864");
|
| 63 |
$("#content").css("border-bottom","1px solid #1A4864");
|
| 64 |
$("#content").css("margin","0");
|
| 65 |
});
|
| 66 |
});
|
| 67 |
/* ]]> */
|
| 68 |
</script>
|
| 69 |
<?php print $closure ?>
|
| 70 |
</body>
|
| 71 |
</html>
|