31 lines
1.0 KiB
PHP
31 lines
1.0 KiB
PHP
<?php
|
|
// $Id$
|
|
?>
|
|
<div id="branding" class="clearfix">
|
|
<?php print $breadcrumb; ?>
|
|
<?php if ($title): ?><h1 class="page-title"><?php print $title; ?></h1><?php endif; ?>
|
|
<?php if ($primary_local_tasks): ?><ul class="tabs primary"><?php print $primary_local_tasks; ?></ul><?php endif; ?>
|
|
</div>
|
|
|
|
<div id="page">
|
|
<?php if ($secondary_local_tasks): ?><ul class="tabs secondary"><?php print $secondary_local_tasks; ?></ul><?php endif; ?>
|
|
|
|
<div id="content" class="clearfix">
|
|
<?php if ($show_messages && $messages): ?>
|
|
<div id="console" class="clearfix"><?php print $messages; ?></div>
|
|
<?php endif; ?>
|
|
<?php if ($page['help']): ?>
|
|
<div id="help">
|
|
<?php print render($page['help']); ?>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php if ($action_links): ?><ul class="action-links"><?php print $action_links; ?></ul><?php endif; ?>
|
|
<?php print render($page['content']); ?>
|
|
</div>
|
|
|
|
<div id="footer">
|
|
<?php print $feed_icons; ?>
|
|
</div>
|
|
|
|
</div>
|