2007-08-07 08:39:36 +00:00
|
|
|
<?php
|
|
|
|
// $Id$
|
|
|
|
?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
|
2006-10-29 13:21:46 +00:00
|
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
2008-01-24 09:42:53 +00:00
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="<?php print $language->language ?>" lang="<?php print $language->language ?>" dir="<?php print $language->dir ?>">
|
2006-10-29 13:21:46 +00:00
|
|
|
<head>
|
|
|
|
<title><?php print $head_title ?></title>
|
|
|
|
<?php print $head ?>
|
|
|
|
<?php print $styles ?>
|
|
|
|
<?php print $scripts ?>
|
|
|
|
<!--[if lt IE 7]>
|
2008-04-28 09:25:27 +00:00
|
|
|
<?php print $ie_styles ?>
|
2006-10-29 13:21:46 +00:00
|
|
|
<![endif]-->
|
|
|
|
</head>
|
2008-04-28 09:25:27 +00:00
|
|
|
<body class="<?php print $body_classes ?>">
|
2006-10-29 13:21:46 +00:00
|
|
|
|
2008-04-28 09:25:27 +00:00
|
|
|
<div id="header-region" class="clear-block"><?php print $header ?></div>
|
2006-10-29 13:21:46 +00:00
|
|
|
|
2008-04-28 09:25:27 +00:00
|
|
|
<div id="wrapper">
|
2006-10-29 13:21:46 +00:00
|
|
|
<div id="container" class="clear-block">
|
|
|
|
|
|
|
|
<div id="header">
|
|
|
|
<div id="logo-floater">
|
2008-04-28 09:25:27 +00:00
|
|
|
<?php if ($logo || $site_title): ?>
|
2008-09-14 02:03:35 +00:00
|
|
|
<h1><a href="<?php print $front_page ?>" title="<?php print $site_title ?>">
|
2008-04-28 09:25:27 +00:00
|
|
|
<?php if ($logo): ?>
|
|
|
|
<img src="<?php print $logo ?>" alt="<?php print $site_title ?>" id="logo" />
|
|
|
|
<?php endif; ?>
|
|
|
|
<?php print $site_html ?>
|
|
|
|
</a></h1>
|
2006-10-29 13:21:46 +00:00
|
|
|
<?php endif; ?>
|
2008-04-28 09:25:27 +00:00
|
|
|
</div>
|
2006-10-29 13:21:46 +00:00
|
|
|
|
2008-04-28 09:25:27 +00:00
|
|
|
<?php if ($primary_nav): print $primary_nav; endif; ?>
|
|
|
|
<?php if ($secondary_nav): print $secondary_nav; endif; ?>
|
|
|
|
</div> <!-- /#header -->
|
2006-10-29 13:21:46 +00:00
|
|
|
|
2007-09-01 05:42:49 +00:00
|
|
|
<?php if ($left): ?>
|
2006-10-29 13:21:46 +00:00
|
|
|
<div id="sidebar-left" class="sidebar">
|
|
|
|
<?php if ($search_box): ?><div class="block block-theme"><?php print $search_box ?></div><?php endif; ?>
|
2007-09-01 05:42:49 +00:00
|
|
|
<?php print $left ?>
|
2006-10-29 13:21:46 +00:00
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
|
|
|
<div id="center"><div id="squeeze"><div class="right-corner"><div class="left-corner">
|
2007-10-11 09:51:29 +00:00
|
|
|
<?php print $breadcrumb; ?>
|
2008-04-28 09:25:27 +00:00
|
|
|
<?php if ($mission): ?><div id="mission"><?php print $mission ?></div><?php endif; ?>
|
|
|
|
<?php if ($tabs): ?><div id="tabs-wrapper" class="clear-block"><?php endif; ?>
|
|
|
|
<?php if ($title): ?><h2<?php print $tabs ? ' class="with-tabs"' : '' ?>><?php print $title ?></h2><?php endif; ?>
|
|
|
|
<?php if ($tabs): ?><ul class="tabs primary"><?php print $tabs ?></ul></div><?php endif; ?>
|
|
|
|
<?php if ($tabs2): ?><ul class="tabs secondary"><?php print $tabs2 ?></ul><?php endif; ?>
|
2007-05-04 09:41:37 +00:00
|
|
|
<?php if ($show_messages && $messages): print $messages; endif; ?>
|
2008-01-07 13:49:38 +00:00
|
|
|
<?php print $help; ?>
|
2007-10-11 09:51:29 +00:00
|
|
|
<div class="clear-block">
|
|
|
|
<?php print $content ?>
|
|
|
|
</div>
|
2006-12-04 23:15:40 +00:00
|
|
|
<?php print $feed_icons ?>
|
2007-09-01 05:42:49 +00:00
|
|
|
<div id="footer"><?php print $footer_message . $footer ?></div>
|
2006-10-29 13:21:46 +00:00
|
|
|
</div></div></div></div> <!-- /.left-corner, /.right-corner, /#squeeze, /#center -->
|
|
|
|
|
2007-09-01 05:42:49 +00:00
|
|
|
<?php if ($right): ?>
|
2006-10-29 13:21:46 +00:00
|
|
|
<div id="sidebar-right" class="sidebar">
|
2007-09-01 05:42:49 +00:00
|
|
|
<?php if (!$left && $search_box): ?><div class="block block-theme"><?php print $search_box ?></div><?php endif; ?>
|
|
|
|
<?php print $right ?>
|
2006-10-29 13:21:46 +00:00
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
2008-04-28 09:25:27 +00:00
|
|
|
</div> <!-- /#container -->
|
|
|
|
</div> <!-- /#wrapper -->
|
2006-10-29 13:21:46 +00:00
|
|
|
|
|
|
|
<?php print $closure ?>
|
|
|
|
</body>
|
2006-11-26 01:55:37 +00:00
|
|
|
</html>
|