60 lines
2.6 KiB
PHP
60 lines
2.6 KiB
PHP
<?php if ($page['help'] || ($show_messages && $messages)): ?>
|
|
<div id="console"><div class="limiter clearfix">
|
|
<?php print render($page['help']); ?>
|
|
<?php if ($show_messages && $messages): print $messages; endif; ?>
|
|
</div></div>
|
|
<?php endif; ?>
|
|
|
|
<?php if ($page['header']): ?>
|
|
<div id="header"><div class="limiter clearfix">
|
|
<?php print render($page['header']); ?>
|
|
</div></div>
|
|
<?php endif; ?>
|
|
|
|
<div id="branding"><div class="limiter clearfix">
|
|
<?php if ($site_name): ?><h1 class="site-name"><?php print $site_name ?></h1><?php endif; ?>
|
|
</div></div>
|
|
|
|
<div id="navigation"><div class="limiter clearfix">
|
|
<?php if (isset($main_menu)) : ?>
|
|
<?php print theme('links__system_main_menu', array('links' => $main_menu, 'attributes' => array('class' => 'links main-menu'), 'heading' => array('text' => t('Main menu'), 'level' => 'h2', 'class' => array('element-invisible')))) ?>
|
|
<?php endif; ?>
|
|
<?php if (isset($secondary_menu)) : ?>
|
|
<?php print theme('links__system_secondary_menu', array('links' => $secondary_menu, 'attributes' => array('class' => 'links secondary-menu'), 'heading' => array('text' => t('Secondary menu'), 'level' => 'h2', 'class' => array('element-invisible')))) ?>
|
|
<?php endif; ?>
|
|
</div></div>
|
|
|
|
<?php if ($page['highlighted']): ?>
|
|
<div id="highlighted"><div class="limiter clearfix">
|
|
<?php print render($page['highlighted']); ?>
|
|
</div></div>
|
|
<?php endif; ?>
|
|
|
|
<div id="page"><div class="limiter clearfix">
|
|
|
|
<?php if ($page['sidebar_first']): ?>
|
|
<div id="sidebar-first" class="clearfix"><?php print render($page['sidebar_first']) ?></div>
|
|
<?php endif; ?>
|
|
|
|
<div id="main-content" class="clearfix">
|
|
<?php if ($breadcrumb) print $breadcrumb; ?>
|
|
<?php print render($title_prefix); ?>
|
|
<?php if ($title): ?><h1 class="page-title"><?php print $title ?></h1><?php endif; ?>
|
|
<?php print render($title_suffix); ?>
|
|
<?php if ($primary_local_tasks): ?><ul class="links clearfix"><?php print render($primary_local_tasks) ?></ul><?php endif; ?>
|
|
<?php if ($secondary_local_tasks): ?><ul class="links clearfix"><?php print render($secondary_local_tasks) ?></ul><?php endif; ?>
|
|
<?php if ($action_links): ?><ul class="links clearfix"><?php print render($action_links); ?></ul><?php endif; ?>
|
|
<div id="content" class="clearfix"><?php print render($page['content']) ?></div>
|
|
</div>
|
|
|
|
<?php if ($page['sidebar_second']): ?>
|
|
<div id="sidebar-second" class="clearfix"><?php print render($page['sidebar_second']) ?></div>
|
|
<?php endif; ?>
|
|
|
|
</div></div>
|
|
|
|
<div id="footer"><div class="limiter clearfix">
|
|
<?php print $feed_icons ?>
|
|
<?php print render($page['footer']) ?>
|
|
</div></div>
|