2007-08-07 08:39:36 +00:00
|
|
|
<?php
|
|
|
|
// $Id$
|
2009-09-15 17:10:39 +00:00
|
|
|
?>
|
2009-10-05 02:43:01 +00:00
|
|
|
<?php print render($page['header']); ?>
|
2006-10-29 13:21:46 +00:00
|
|
|
|
2008-04-28 09:25:27 +00:00
|
|
|
<div id="wrapper">
|
2009-02-18 14:28:25 +00:00
|
|
|
<div id="container" class="clearfix">
|
2006-10-29 13:21:46 +00:00
|
|
|
|
|
|
|
<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
|
|
|
|
2009-09-15 17:10:39 +00:00
|
|
|
<?php if ($page['sidebar_first']): ?>
|
2009-08-03 03:04:34 +00:00
|
|
|
<div id="sidebar-first" class="sidebar">
|
2009-09-15 17:10:39 +00:00
|
|
|
<?php print render($page['sidebar_first']); ?>
|
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; ?>
|
2009-09-15 17:10:39 +00:00
|
|
|
<?php if ($page['highlight']): ?><div id="highlight"><?php render($page['highlight']); ?></div><?php endif; ?>
|
2009-02-18 14:28:25 +00:00
|
|
|
<?php if ($tabs): ?><div id="tabs-wrapper" class="clearfix"><?php endif; ?>
|
2008-04-28 09:25:27 +00:00
|
|
|
<?php if ($title): ?><h2<?php print $tabs ? ' class="with-tabs"' : '' ?>><?php print $title ?></h2><?php endif; ?>
|
2009-10-11 06:05:53 +00:00
|
|
|
<?php if ($tabs): ?><ul class="tabs primary"><?php print render($tabs) ?></ul></div><?php endif; ?>
|
|
|
|
<?php if ($tabs2): ?><ul class="tabs secondary"><?php print render($tabs2) ?></ul><?php endif; ?>
|
2007-05-04 09:41:37 +00:00
|
|
|
<?php if ($show_messages && $messages): print $messages; endif; ?>
|
2009-09-15 17:10:39 +00:00
|
|
|
<?php print render($page['help']); ?>
|
2009-10-11 06:05:53 +00:00
|
|
|
<?php if ($action_links): ?><ul class="action-links"><?php print render($action_links); ?></ul><?php endif; ?>
|
2009-02-18 14:28:25 +00:00
|
|
|
<div class="clearfix">
|
2009-09-15 17:10:39 +00:00
|
|
|
<?php print render($page['content']); ?>
|
2007-10-11 09:51:29 +00:00
|
|
|
</div>
|
2006-12-04 23:15:40 +00:00
|
|
|
<?php print $feed_icons ?>
|
2009-10-05 02:43:01 +00:00
|
|
|
<?php print render($page['footer']) ?>
|
2006-10-29 13:21:46 +00:00
|
|
|
</div></div></div></div> <!-- /.left-corner, /.right-corner, /#squeeze, /#center -->
|
|
|
|
|
2009-09-15 17:10:39 +00:00
|
|
|
<?php if ($page['sidebar_second']): ?>
|
2009-08-03 03:04:34 +00:00
|
|
|
<div id="sidebar-second" class="sidebar">
|
2009-09-15 17:10:39 +00:00
|
|
|
<?php print render($page['sidebar_second']); ?>
|
2006-10-29 13:21:46 +00:00
|
|
|
</div>
|
|
|
|
<?php endif; ?>
|
|
|
|
|
2008-04-28 09:25:27 +00:00
|
|
|
</div> <!-- /#container -->
|
|
|
|
</div> <!-- /#wrapper -->
|